报错如下:172.31.18.90:6379>set test test1(error)MISCONF Redisis 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...
save 60 10000#60秒内至少有10000个key被更改就执行快照#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...
原因:强制关闭Redis快照导致不能持久化。解决方案:运行config set stop-writes-on-bgsave-error no 命令后,关闭配置项stop-writes-on-bgsave-error解决该问题。root@ubuntu:/usr/local/redis/bin#./redis-cli127.0.0.1:6379>config set ...