Redis (error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persis

来源:互联网 发布:淘宝竞价推广 编辑:程序博客网 时间:2024/06/05 22:59

异常:(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快照导致不能持久化。

 

解决方案:运行config set stop-writes-on-bgsave-error no 命令后关闭配置项stop-writes-on-bgsave-error解决该问题。

boonya@ubuntu:/usr/local/redis/redis-3.0.3$ boonya@ubuntu:/usr/local/redis/redis-3.0.3$ ./src/redis-cli127.0.0.1:6379> auth 123456OK127.0.0.1:6379> config set stop-writes-on-bgsave-error noOK127.0.0.1:6379> set foo tarOK127.0.0.1:6379> get foo"tar"127.0.0.1:6379> 



0 0