Redis错误及其解决方式
今天打开网站,发现了php报错了
问题
1.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.
昨天还好好的,今天突然就不能访问了,查了资料,我觉得多半是磁盘空间满了,于是查看磁盘使用空间,还真是满了。
1 | ## 查看磁盘空间剩余情况 |
参考文章:
1.解决Redis之MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist o… (这个是说设置stop-writes-on-bgsave-error为no)
2.Redis报错#MISCONF Redis is configured to save RDB snapshots, but is currently not (这个也是说设置stop-writes-on-bgsave-error为no)
3.解决redis磁盘满了无法持久化错误not able to persist on disk (这个是说磁盘满了,可以清理磁盘)
1.解决Redis之MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist o… (这个是说设置stop-writes-on-bgsave-error为no)
2.Redis报错#MISCONF Redis is configured to save RDB snapshots, but is currently not (这个也是说设置stop-writes-on-bgsave-error为no)
3.解决redis磁盘满了无法持久化错误not able to persist on disk (这个是说磁盘满了,可以清理磁盘)
2.(error) NOAUTH Authentication required.
主要是因为设置了密码,所以访问的时候会出现问题。
参考文章:
1.Redis (error) NOAUTH Authentication required.解决方法 (主要是windows配置密码方式)
2.Redis报错 : (error) NOAUTH Authentication required. (这里就是说要输入密码,没啥用)
3.Redis 密码设置和查看密码
4.spring boot 集成 redis 支持设置redis密码问题解决 (在springboot中设置密码)
5.linux redis重置密码、重启
1.Redis (error) NOAUTH Authentication required.解决方法 (主要是windows配置密码方式)
2.Redis报错 : (error) NOAUTH Authentication required. (这里就是说要输入密码,没啥用)
3.Redis 密码设置和查看密码
4.spring boot 集成 redis 支持设置redis密码问题解决 (在springboot中设置密码)
5.linux redis重置密码、重启