今天在新服务器执行Magento2更新命令,发现Redis出问题了
提示语:MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.
解决方法:
1、 执行:redis-cli,进入redis client;
2、接着执行:config set stop-writes-on-bgsave-error no
OK
其实,从报错,也可以看
来源:oschina
链接:https://my.oschina.net/ganfanghua/blog/3196524