Redis配置错误:连接后执行命令失败,RDB快照保存设置有误?
- 内容介绍
- 文章标签
- 相关推荐
本文共计101个文字,预计阅读时间需要1分钟。
Redis错误提示:无法将RDB快照持久化到磁盘,数据修改命令被禁用。请检查Redis日志以获取错误详情。解决方法:运行`config set save on`
(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.
解决办法:
config set stop-writes-on-bgsave-error no本文共计101个文字,预计阅读时间需要1分钟。
Redis错误提示:无法将RDB快照持久化到磁盘,数据修改命令被禁用。请检查Redis日志以获取错误详情。解决方法:运行`config set save on`
(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.
解决办法:
config set stop-writes-on-bgsave-error no
