how to install redis on ubuntu 19.04 code example
Example: 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