Stop redis server. Neither shutdown nor stop works

后端 未结 16 775
深忆病人
深忆病人 2021-01-31 08:43

I want to stop the redis server and it just keeps going and going. I am using redis-2.6.7

Check that it is running:

redis-server

It say

16条回答
  •  迷失自我
    2021-01-31 09:10

    You use the following command to kill the running redis-server process.

    ps aux |grep redis
    

    This will list all the running processes for redis-server. Then you can use the following command to kill the redis processes

    sudo kill 
    

    sample here

    sudo kill 7229 //for the above sample.
    

提交回复
热议问题