redis异常信息:MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk.。。。。

redis.exceptions.ResponseError: 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.

解决方案:

启动reids服务后,打开新的终端,输入redis-cli进入redis客户端,然后输入代码:config set stop-writes-on-bgsave-error no

原文地址:https://www.cnblogs.com/yanlin-10/p/9869398.html