解决 redis 问题:MISCONF Redis is onfigured to save RDB snapshots, but is currently not able to persis...

问题

今天页面突然打不开,报错信息为 redis 报错


解决 redis 问题:MISCONF Redis is onfigured to save RDB snapshots, but is currently not able to persis..._第1张图片
image.png

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

原因

强制关闭 Redis 快照导致不能持久化。至于为何会被强制关闭,目前还不清楚。

解决方案

将stop-writes-on-bgsave-error设置为no

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

设置完 redis 即可正常运行。

你可能感兴趣的:(解决 redis 问题:MISCONF Redis is onfigured to save RDB snapshots, but is currently not able to persis...)