1. 程式人生 > >(error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk.

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

tail ann 修改 led div odi logs please -o

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

今天運行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日誌的詳細錯誤信息。

原因:

強制關閉Redis快照導致不能持久化。

解決方案:

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

[email protected]:/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

http://www.cnblogs.com/anny-1980/p/4582674.html

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