Redisエラーの解決MISCONF Redis is configured to save RDB snapshots,but it is currently not able to persi...
526 ワード
#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に設定
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