Answers for "locate redis.conf on ununtu / linux"

18

how to install redis in ubuntu

sudo apt update
sudo apt install redis-server

sudo nano /etc/redis/redis.conf

# change "supervised no" to "supervised systemd" 
supervised systemd

sudo systemctl restart redis.service

sudo systemctl status redis

redis-cli
Posted by: Guest on August-06-2020
2

redis ubuntu install

wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
Posted by: Guest on July-23-2020
0

locate redis.conf on ununtu / linux

sudo micro /etc/redis/redis.conf
Posted by: Guest on January-25-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language