您的位置:首页 > 数据库 > Redis

127.0.0.1:6379> del runoobkey (error) MISCONF Redis is configured to save RDB snapshots, but it is c

2017-12-29 09:55 791 查看

错误信息

127.0.0.1:6379> del runoobkey
(error) MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.


翻译

错误)misconf redis配置保存的数据库快照,但它目前是不能够坚持在磁盘。命令,可以修改数据集被禁用,因为此实例配置错误报告中写道如果数据库快照失败(不要写在bgsave错误选项)。请检查一下数据库错误细节Redis的日志。


分析

这是由于强制停止redis快照,不能持久化引起的,运行info命令查看redis快照的状态,如下:



解决办法

运行 config set stop-writes-on-bgsave-error no 命令
关闭配置项stop-writes-on-bgsave-error解决该问题。


参考地址

http://blog.csdn.net/song19890528/article/details/38536871
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐