Redis|报错 MISCONF Redis is configured to save RDB snapshots 题目修复
题目现象使用 DataGrip 使用 SSH 长途连接 Redis 时报错如下:
MISCONF Redis is configured to save RDB snapshots, but it’s currently unable to persist to 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.
但是直接在服务器上使用 redis-cli 命令或在开发机用 Python SDK 通过 SSH 长途连接均正常。
题目原因
Redis 配置为保存 RDB 快照,但目前无法再磁盘上持久化。可能修改数据集的命令将被禁用,因为此实例配置在 RDB 快照失败时报告报错。
这说明当前 RDB 快照写入是有题目标,我们需要解决 RDB 快照的题目。如果这个题目是在执行了第一个 Redis 写入命令后出现,那么说明 Redis 的 RDB 配置完全异常。
对于这种情况,我们起首思量的应该是,如何解决 RDB 快照写入题目,令 Redis 可以正常持久化,此乃上策。只有实在无法解决 RDB 快照写入题目,再思量关闭 Redis 的 RDB 快照写入失败的报错,让 Redis 在无法持久化数据的情况下运行,此乃无可怎样之下策。
上策:修复 RDB 快照写出题目
可能原因 1:启动 Redis 服务的用户权限不敷
如果启动 Redis 服务的用户权限不敷,则将导致无法在 Redis 文件夹中写出 dump.rdb 文件。
建议检查启动 Redis 历程的用户是否有 Redis 目录的权限,如果没有则切换用户或赋予权限。
下策:屏蔽 RDB 写入失败报错
通过将 stop-writes-on-bgsave-error 配置置为 no,也可以让 RDB 写入失败不再报错。需要留意的是,这样的修改会令 Redis 现实不再进行持久化,只是不再显示题目,而非解决了题目!!!
这个配置项的说明信息如下:
# By default Redis will stop accepting writes if RDB snapshots are enabled
# (at least one save point) and the latest background save failed.
# This will make the user aware (in a hard way) that data is not persisting
# on disk properly, otherwise chances are that no one will notice and some
# disaster will happen.
#
# If the background saving process will start working again Redis will
# automatically allow writes again.
#
# However if you have setup your proper monitoring of the Redis server
# and persistence, you may want to disable this feature so that Redis will
# continue to work as usual even if there are problems with disk,
# permissions, and so forth.
stop-writes-on-bgsave-error yes
增长暂时配置(重启 Redis 失效)
启动 Redis 客户端(redis-cli),执行如下命令:
config set stop-writes-on-bgsave-error no
修改永久配置(重启 Redis 不失效)
修改 redis.conf 文件中的 stop-writes-on-bgsave-error 配置项,将那一行改为:
stop-writes-on-bgsave-error no
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页:
[1]