Redis可以登入,但有些值不能獲取或者設定,PING命令也用不了

hai0808發表於2017-09-29

MISCONF Redis is configured to save RDB snapshots

今天在redis中執行setrange name 1 chun 命令時報瞭如下錯誤提示:

(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.

大意為:(錯誤)misconf redis被配置以儲存資料庫快照,但misconf redis目前不能在硬碟上持久化。用來修改資料集合的命令不能用,使用日誌的錯誤詳細資訊


這是由於強制停止redis快照,不能持久化引起的,執行info命令檢視redis快照的狀態,如下:


解決方案如下:

執行 config set stop-writes-on-bgsave-error no 命令

關閉配置項stop-writes-on-bgsave-error解決該問題。

相關文章