redis报(error) ERR Errors trying to SHUTDOWN. Check logs.

今天重启redis 无法正常关闭报(error) ERR Errors trying to SHUTDOWN. Check logs.错误

[zykj@localhost src]$ redis-cli -p 6379 shutdown 
(error) ERR Errors trying to SHUTDOWN. Check logs.

  首先检查一下是否是权限的问题,因为在shutdown命令的时候,会进行save操作,而save需要操作dump.rdb文件,如果没有权限则会报这个错. 

如果权限没问题 打开redis安装目录下的redis.conf找到

# The working directory.
#
# The DB will be written inside this directory, with the filename specified
# above using the 'dbfilename' configuration directive.
#
# The Append Only File will also be created inside this directory.
#
# Note that you must specify a directory here, not a file name.
dir /data/redis/

  把dir ./改为相应的目录,如“dir /data/redis/”(这里需要注意最后的斜杠不能忘记,如果缺失斜杠可能会解析为文件而非目录),保存。

再次尝试 成功启动

posted @ 2017-11-17 13:45  Gnnnny  阅读(4848)  评论(0编辑  收藏  举报