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

今天運行Redis時發生錯誤,錯誤信息以下: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日誌的詳細錯誤信息。ubuntu

 

緣由:spa

強制關閉Redis快照致使不能持久化。日誌

 

解決方案:it

運行config set stop-writes-on-bgsave-error no 命令後關閉配置項stop-writes-on-bgsave-error解決該問題。cli

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
配置

相關文章
相關標籤/搜索