ubuntu install redis commander apt-get code example
Example 1: redis install ubuntu
sudo apt update
sudo apt install redis-server
sudo systemctl status redis
sudo systemctl stop redis
sudo systemctl restart redis.service
redis-cli
127.0.0.1:6379> ping
PONG
set test "It's working!"
OK
get test
"It's working!"
>sudo nano /etc/redis/redis.conf
Scroll to the SECURITY section and look for a commented directive that reads:
Uncomment it by removing the
Login form redis cli
127.0.0.1:6379>auth your_redis_password
Example 2: redis install ubuntu
$ wget https://download.redis.io/releases/redis-6.2.3.tar.gz
$ tar xzf redis-6.2.3.tar.gz
$ cd redis-6.2.3
$ make