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目录下面的src目录下,执行以下命令进入redis数据库

./redis-cli -h ip(你的服务器ip) -p 6379

然后执行以下命令

config set stop-writes-on-bgsave-error no

你可能感兴趣的:(redis常见错误解决办法)