redis 数据库快照不能持久化到硬盘

允我心安 提交于 2020-03-17 11:24:47

某厂面试归来,发现自己落伍了!>>>

错误:(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.

 

原因:Redis被配置为保存数据库快照,但它目前不能持久化到硬盘。用来修改集合数据的命令不能用。请查看Redis日志的详细错误信息。

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

 

解决:登录redis客户端,然后输入命令: config set stop-writes-on-bgsave-error no

root@ubuntu:/usr/local/redis/bin# ./redis-cli
127.0.0.1:6379> config set stop-writes-on-bgsave-error no

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!