Installing and Configuring Redis Server on Ubuntu Server 20.10, Install and Secure Redis on Ubuntu

Опубликовано: 05 Октябрь 2024
на канале: aryan computer
5,208
42

★ SUBSCRIBE MY CHANNEL :-
YouTube Channel: https://goo.gl/wwYdAE

★Join me on social networks.
Facebook:https://bit.ly/2TRIeR3


Ubuntu Tutorial For Beginners:- https://bit.ly/2JW4g2r
AWS Tutorial For Beginners :- https://bit.ly/2tl0mWy
Windows Server Tutorial for Beginners :- https://bit.ly/2MFlLCW

How to fix System Running on Low Graphics Mode in Ubuntu    • How to fix  System Running on Low Gra...  

How to install Tomcat 8 in Ubuntu
   • How To Install Apache Tomcat 9 on Ubu...  

How to install Samba Server on Ubuntu
   • How to install Samba Server on Ubuntu...  

How to install QT install Ubuntu
   • How to install QT creator 5.9 on Ubun...  

How to Install Node js and Angular js in Ubuntu
   • How to Install Node, Angular on Ubunt...  

How to install net tools in Ubuntu
   • How to install net tools in Ubuntu 20...  

How to Install MySQL Workbench in Ubuntu
   • Install MySQL Workbench on Ubuntu 20....  

How to Install Code Block and create Project C++ in Ubuntu
   • Install CodeBlocks IDE on Linux, Inst...  

How To install CMake in Ubuntu
   • How To install CMake on Ubuntu 20.10,...  

How to install and use Tweak Tool in Ubuntu
   • How to install Tweak Tool on Ubuntu 2...  

How to Create Desktop icon shortcut in Ubuntu
   • How to Create Desktop shortcut on Ubu...  

How to install Visual Studio Code in Ubuntu
   • how to Install Visual Studio Code on ...  

How to Install Tally Server 9 in Windows 10
   • Installing Tally. Server 9 Windows 10...  

How to install Tally ERP 9 in Windows 10, win7, Win8
   • How to install Tally ERP 9 in Windows...  

How to Configuration RAID 5 Disk in Windows Server 2016/2019
   • How to  Configuration RAID 5 Disk  in...  

How to Create VHD Disk & Mount in Windows Server 2016/2019
   • How to Create VHD Disk Windows Server...  

Logon Script Network Share Drive in Windows Server 2016/2019
   • Logon Script Network Share Drive in W...  

How to Enable Hyper-V in Windows 10 and Install Windows Server 2016/2019
   • Video  

How To Install Ubuntu 19.04 in Hyper-V, Desktop, Laptop, VMWare
   • Video  

How to install WordPress Server in Window 10,Window 7, Windows Server 2019,2016,2012
   • Video  

How to install Orcle JAVA & JDK in Ubuntu 19.04,18.10,18.04
   • Video  

How to install Android Studio in Windows 10
   • Video  

How to install auto driver dell laptop in windows 10
   • Video  

How to install java in windows 10 and set environment
   • Video  

How to Install Node js in Windows 10 and Install npm
   • How to Install Node.js and NPM Window...  

After Effect 2019 Could not find the user documents directory,After Effect 2020
   • After Effects warning Could not find ...  

This is no longer located in can't delete file, Windows and Windows server
   • Video  

How to turn off Bit Locker in Windows 10 USB Drive, Pen Drive
   • Video   ,    • Video  

Netgear NAS Drive 212 Open box and overview & create & Delete Share Folder
   • NETGEAR Ready NAS Installation, Netge...  
   • How to create & Delete Share Folder N...  
   • NETGEAR ReadyNAS Installation, Netgea...  
   • How create user account ReadyNAS, How...  

Gitalb Server Installion and Configration in Ubuntu Server:-
   • GitLab email configuration, GitLab se...  
   • Back up and restore GitLab, Easy & si...  
   • Download and install GitLab Server in...  
   • How To Update GitLab ee, How to updat...  
   • GitLab Server Ldap Configration,How t...  

flutter installation on ubuntu:-
   • Install Flutter on Linux Ubuntu, flut...  

Ubuntu Server 20.10 Tutorials:-
How to Configure Static IP on Ubuntu Server 20.10:-
   • How to Configure Static IP on Ubuntu ...  

Ubuntu Server 20.10 GUI installation:-
   • Ubuntu Server  20.10 GUI installation...  

Ubuntu 20.10 LTS Server Installations:-
   • Ubuntu 20.10 LTS Server Installations...  

How to install Oracle Java and JDK in Ubuntu Server 20.10
   • Video  

Installing and Configuring Redis Ubuntu Server 20.10

sudo apt update

sudo apt install redis-server

sudo systemctl enable redis-server

sudo systemctl status redis


Connect to Redis Server:-

redis-cli

ping

set test "It's working!"

get test


exit


sudo netstat -lnp | grep redis


redis-cli info
redis-cli info stats
redis-cli info server

sudo ufw allow proto tcp from 192.168.1.1/24 to any port 6379

Locate the line that begins with bind 127.0.0.1 ::1 and comment it.
sudo nano /etc/redis/redis.conf
#bind 127.0.0.1 ::1

protected-mode no

sudo systemctl restart redis-server

redis-cli -h 192.168.1.4 ping