Answers for "how to install in redis commander in ubuntu"

6

install redis ubuntu

sudo apt update
sudo apt install redis-server

sudo systemctl restart redis.service

sudo systemctl status redis

redis-cli
Posted by: Guest on November-29-2020
1

redis ubuntu install

# This explanation shows how to install the latest redis version on ubuntu

# add redis repository - as ubuntu normal repository holds an old version of redis
sudo add-apt-repository ppa:redislabs/redis
sudo apt-get update

# install redis
sudo apt-get install redis-server

# set redis to auto-strat on boot
sudo systemctl enable redis-server
sudo systemctl daemon-reload
Posted by: Guest on March-31-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language