Start and stop redis installation on ubuntu

To operate Redis on Ubuntu, you can follow the steps below:

Install Redis: Install Redis with the following command:

sudo apt-get update
sudo apt-get install redis-server

Set up automatic startup at boot: Use the following command to set Redis to start automatically at boot time:

sudo update-rc.d redis-server defaults

Start Redis: Start Redis with the following command:

sudo /etc/init.d/redis-server start

Start a client connection: Start a Redis client connection with the following command:

redis-cli

View Redis status: Use the following command to view the status of Redis:

ps -ef|grep redis

If the Redis service status is running, it means that Redis has been successfully started.

To close Redis on Ubuntu, you can follow the steps below:

Stop Redis: Stop Redis with the following command:

sudo /etc/init.d/redis-server stop

Close the Redis client connection: Use the following command to close the Redis client connection:

exit

Confirm that Redis has stopped: Use the following command to view the status of Redis:

ps -ef|grep redis

If the Redis service status is stopped, it means that Redis has been successfully shut down.

Guess you like

Origin blog.csdn.net/weixin_45000409/article/details/131308470