Home  »  CodeSnippetsSoftwareTechnologyTools   »   How can I Stop Redis-server in Ubuntu?

How can I Stop Redis-server in Ubuntu?

Posted: March 21, 2022 | by Michael Bright

Stop Redis-server if Redis is installed via snap:

$ sudo snap stop redis.server

Other option.

Step 1: Stop the redis-server

$ sudo service redis-server stop

Step 2: Disable the redis-server

$ sudo systemctl disable redis-server

If you need Redis again, you can start it as:

$ sudo service redis-server start

Check the status of Redis using:

$ sudo service redis-server status

Found this article interesting? Follow Brightwhiz on Facebook, Twitter, and YouTube to read and watch more content we post.