redis強制閉鎖の問題の解決

1158 ワード

Redisを解決する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を操作する時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問題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はデータベーススナップショットを保存するように構成されていますが、現在はハードディスク(HDD)に永続化できません.コレクションデータを変更するコマンドは使用できません.Redisログの詳細エラー情報を参照してください.
理由Redisスナップショットを強制的にオフにすると、永続化できません.
ソリューションstop-writes-on-bgsave-errorをnoに設定
127.0.0.1:6379> config set stop-writes-on-bgsave-error no