我是靠谱客的博主 细心胡萝卜,最近开发中收集的这篇文章主要介绍(error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on d...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

今天运行Redis时发生错误,错误信息如下:

(error) 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被配置为保存数据库快照,但它目前不能持久化到硬盘。用来修改集合数据的命令不能用。请查看Redis日志的详细错误信息。

 

原因:

强制关闭Redis快照导致不能持久化。

 

解决方案:

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

root@ubuntu:/usr/local/redis/bin# ./redis-cli
127.0.0.1:6379> config set stop-writes-on-bgsave-error no
OK
127.0.0.1:6379> lpush myColour "red"
(integer) 1

 

转载于:https://www.cnblogs.com/anny-1980/p/4582674.html

最后

以上就是细心胡萝卜为你收集整理的(error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on d...的全部内容,希望文章能够帮你解决(error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on d...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部