How to start and stop server

To start Redis server:

sudo systemctl start redis

To start Redis automatically when your server boots:

sudo systemctl enable redis

To restart Redis server:

sudo systemctl restart redis

To stop redis

sudo systemctl stop redis