解决错误:MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk

时间:2025-03-23 17:20:44

redis问题: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.

翻译为:misconf redis配置为保存RDB快照,但当前无法在磁盘上保留。可以修改数据集的命令被禁用。请查看redis日志以了解有关错误的详细信息。

解决方法:

1.登录redis-cli输入命令:config set stop-writes-on-bgsave-error no
2.是直接修改配置文件,修改文件:vim打开redis-server配置的文件,然后使用快捷匹配模式:/stop-writes-on-bgsave-error定位到stop-writes-on-bgsave-error字符串所在位置,接着把后面的yes设置为no即可。
任意一种方式即可。