How to Shutdown Redis on Linux
There are several methods available to shut down Redis.
- To shut down using command line, you can close Redis by entering the following command in the terminal.
redis-cli shutdown
This will send a shutdown signal to Redis, prompting it to gracefully shut down.
- To shut down using the redis-server command: If Redis was started with the redis-server command, you can use the following command to close Redis:
redis-server --daemonize no
This will instruct Redis to start in non-daemon mode and to stop Redis by pressing Ctrl+C in the terminal.
- If Redis is started as a system service, you can use the following command to shut it down:
sudo systemctl stop redis
This will stop the Redis service.
Please note that the above methods may require some adjustments based on your system and the way Redis is installed.