redis desktop manager can't connect - redis

An error occurred while running Redis today, the error message is as follows:

(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 is configured to save database snapshots, but it cannot currently persist to disk. Commands used to modify collection data cannot be used. Please check the Redis log for detailed error messages.

 

reason:

Forcibly closing Redis snapshots can't persist.

 

solution:

After running the config set stop-writes-on-bgsave-error no command , close the configuration item stop-writes-on-bgsave-error to solve the problem.

root@ubuntu:/usr/local/redis/bin# ./redis-cli
127.0.0.1:6379> config set stop-writes-on-bgsave-error no
OK

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325406118&siteId=291194637