redis “出现error) MISCONF Redis is configured to save RDB snapshots, but it is currently 解决办法”

Posted 似水流年,是谁苍白了等待

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis “出现error) MISCONF Redis is configured to save RDB snapshots, but it is currently 解决办法”相关的知识,希望对你有一定的参考价值。

问题:

(error) MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on 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中两种持久化机制:分别为RDB和AOF。

RDB:

RDB其实就是把数据以快照的形式保存在磁盘上。什么是快照呢,你可以理解成把当前时刻的数据拍成一张照片保存下来。

AOF:

全量备份总是耗时的,有时候我们提供一种更加高效的方式AOF,工作机制很简单,redis会将每一个收到的写命令都通过write函数追加到文件中。通俗的理解就是日志记录。

 

从上述问题翻译看,大概意思就是不能将数据以快照方式持久化到磁盘。

但是redis的默认持久化方式是快照的方式,也就是RDB方式。

解决办法

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

什么是bgsave——通过一张图来说明

stop-writes-on-bgsave-error:默认为yes。默认以RDB为持久化方式,如果当数据持久化失败的时候,Redis会停止接收数据。这会让用户感觉到数据没有正确持久化到磁盘上。如果Redis重启了,那么没有被持久化的数据丢失,又需要重新接收新的数据。

 

 

以上是关于redis “出现error) MISCONF Redis is configured to save RDB snapshots, but it is currently 解决办法”的主要内容,如果未能解决你的问题,请参考以下文章

redis启动,停止

redis演练聚集

windows 怎么开启redis

redis如何执行redis命令

Redis学习——详解Redis配置文件

Redis 基础 -- Redis简介CentOS 7 单机安装Redis启动Redis(后台启动Redis 指定配置文件启动Redis 开机自启Redis )Redis客户端(含图形化界面)