今天用redis遇到一个问题,在存数据时报错(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后,运行运行config set stop-writes-on-bgsave-error no;这个问题一由般强制停止redis快照导致,redis运行用户没有权限写rdb文件或者磁盘空间满了。