Liunx关闭Redis进程

1.当设置密码后,上面的关闭命令无效:带密码输入:    redis-cli -a [password]     回车后输入:shutdown save

shutdown还有一个参数,代表关闭redis服务前是否生产持久化文件

1
shutdown save
1
2
3
4
5
6
7
8
9
10
[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 进程

1
2
3
4
5
6
7
[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]#

  

posted @   Amy清风  阅读(2747)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
点击右上角即可分享
微信分享提示