1.當設置密碼后,上面的關閉命令無效:帶密碼輸入: redis-cli -a [password] 回車后輸入:shutdown save
shutdown還有一個參數,代表關閉redis服務前是否生產持久化文件
shutdown save
[root@localhost redis]# ps aux | grep redis root 3384 0.0 0.7 152412 7812 ? Ssl 21:16 0:00 ./bin/redis-server 192.168.146.128:6379 root 3389 0.0 0.0 103248 832 pts/0 S+ 21:16 0:00 grep redis [root@localhost redis]# ./bin/redis-cli -a 123456 Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe. 127.0.0.1:6379> shutdown save not connected> exit [root@localhost redis]# ps aux | grep redis root 3389 0.0 0.0 103248 832 pts/0 S+ 21:16 0:00 grep redis [root@localhost redis]#
2.kill -9 pid 進程
[root@localhost redis]# ps aux | grep redis root 3384 0.0 0.7 152412 7812 ? Ssl 21:16 0:00 ./bin/redis-server 192.168.146.128:6379 root 3389 0.0 0.0 103248 832 pts/0 S+ 21:16 0:00 grep redis [root@localhost redis]# kill -9 3384 [root@localhost redis]# ps aux | grep redis root 3401 0.0 0.0 103248 832 pts/0 S+ 21:17 0:00 grep redis [root@localhost redis]#