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.
解决办法:
127.0.0.1:6379> config set stop-writes-on-bgsave-error no
把yes改为no

本文介绍了解决Redis在配置为保存RDB快照时遇到无法持久化到磁盘的问题,通过调整stop-writes-on-bgsave-error选项状态,使Redis在RDB快照失败时不再报告写入错误,确保服务的正常运行。
1777

被折叠的 条评论
为什么被折叠?



