(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 t

原因:

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

解决方案:

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

127.0.0.1:6379> config set stop-writes-on-bgsave-error no
OK

127.0.0.1:6379> INCR key2
(integer) 1
127.0.0.1:6379> INCR key2
(integer) 2

原文地址:https://www.cnblogs.com/ling-1991/p/7814813.html