redis學習五、錯誤總結,redis正常運行時後會出現一些bug 總結。

前言

一、error 1

(error) MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.

redis快照被強制關閉了導致不能持久化的問題,可通過stop-writes-on-bgsave-error值設置爲no即可避免這種問題

解決方法:

命令行修改:

127.0.0.1:6379> config set stop-writes-on-bgsave-error no

重啓redis-server

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章