今天运行Redis时发生错误,错误信息如下:
(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快照导致不能持久化。
解决方案:
运行config set stop-writes-on-bgsave-error no 命令后,关闭配置项stop-writes-on-bgsave-error解决该问题。
root@ubuntu:/usr/local/redis/bin# ./redis-cli
127.0.0.1:6379> config set stop-writes-on-bgsave-error no
OK
127.0.0.1:6379> lpush myColour "red"
(integer) 1
查询配置项信息
127.0.0.1:6379> config get stop-writes-on-bgsave-error
1) "stop-writes-on-bgsave-error"
2) "no"
相关推荐
本文主要讨论了一个特定的Redis持久化问题:“MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk”,以及如何解决这个问题。 Redis的持久化方式主要有两种:RDB...
1. (error) MISCONF Redis is configured to save RDB snapshots1.1 问题描述(error) MISC
这个异常表明 Redis 在尝试执行一个命令时遇到了问题,具体表现为“MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk”。这通常意味着 Redis 配置了定期保存数据...
3. 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 ...
参考:https://www.baidu.com/s?ie=UTF-8&wd=MISCONF Redis is configured to save RDB snapshots 127.0.0.1:6379> config set stop-writes-on-bgsave-error no 如果配置redis后正常使用请忽略本条问题 my_public_ip...
MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Redis Bgsave 命令用于在后台异步保存当前数据库的数据到磁盘。 BGSAVE 命令执行之后立即返回 OK ,然后 ...