redis启动,停止

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis启动,停止相关的知识,希望对你有一定的参考价值。

参考技术A 1.直接启动

进入redis根目录,执行命令:

#加上‘&’号使redis以后台程序方式运行

./redis-server &

2.通过指定配置文件启动

可以为redis服务启动指定配置文件,例如配置为/etc/redis/6379.conf

进入redis根目录,输入命令:

./redis-server /etc/redis/6379.conf

#如果更改了端口,使用`redis-cli`客户端连接时,也需要指定端口,例如:

redis-cli -p 6380

后台方式启动

修改redis.conf,把daemonize no修改成daemonize yes

停止:redis-cli shutdown

查找进程号

ps -ef | grep redis

杀进程

kill -6 pid

redis快照问题错误信息如下:

MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error.

排查与解决步骤:

进入redis使用info命令查看,会发现最后一次快照失败的信息

rdb_last_bgsave_status:err

处理方法:

1.进入redis临时关闭配置(如果需要,要再redis.conf上写上该配置,不然下次重启redis配置会失效)

config set stop-writes-on-bgsave-error no

以上是关于redis启动,停止的主要内容,如果未能解决你的问题,请参考以下文章

Linux下停止和启动redis

redis启动停止+密码认证

Redi服务启动与停止

redis 启动停止脚本

启动和停止

启动redis-server之后怎么停止