(Error) Misconf Redis is configured to save the RDB snapshots, but was currently not able to persist on disk. Commands that may modify the data set is disabled. Please check your Redis logs for details about the error.
Redis is configured to save a database snapshot, but it cannot be persisted to the hard disk at this time. The command used to modify collection data is not available. Please review the detailed error information for the Redis log.
Reason:
Forcing a Redis snapshot to close causes it to not persist.
Solution:
After you run the config set stop-writes-on-bgsave-error no command, close the configuration item Stop-writes-on-bgsave-error resolve the issue.
[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
Redis Exception: (Error) misconf Redis is configured to save RDB snapshots, but was currently not able to persist on disk.