我是靠谱客的博主 热情大树,最近开发中收集的这篇文章主要介绍redis常见的报错 和解决方案,收纳中,希望给大家帮助。,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

今天运行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被配置为保存数据库快照,但它目前不能持久化到硬盘。用来修改集合数据的命令不能用。请查看Redis日志的详细错误信息。

原因:

强制关闭Redis快照导致不能持久化。

解决方案:

127.0.0.1:6379> set name "hello"  
(error) NOAUTH Authentication required.  
127.0.0.1:6379> (error) NOAUTH Authentication required.  
(error) ERR unknown command '(error)'  
127.0.0.1:6379> auth "root"  

运行config set stop-writes-on-bgsave-error no 命令后关闭配置项stop-writes-on-bgsave-error解决该问题。

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

(integer) 1


2. 

Redis (error) NOAUTH Authentication required.解决方法


127.0.0.1:6379> auth "yourpassword"  

例如密码是‘root’,当出现认证问题时候,输入“auth ‘root’”即可

可以进入

127.0.0.1:6379> auth "root"

OK


3


creating server tcp listening socket 127.0.0.1:6379: bind No error

window下安装redis报错:

creating server tcp listening socket 127.0.0.1:6379: bind No error

的解决方案如下按顺序输入如下命令就可以连接成功

1. redis-cli.exe
2. shutdown
3. exit
4. redis-server.exe redis.windows.conf


ERR Client sent AUTH, but no password is set

from:

http://bbs.csdn.net/topics/391824759?page=1


127.0.0.1:6379> auth 123456
ERR Client sent AUTH, but no password is set

设置其密码

redis 127.0.0.1:6379> CONFIG SET requirepass "123456"
OK
redis 127.0.0.1:6379> AUTH 123456
Ok

设置下这个配置密码就好了


最后

以上就是热情大树为你收集整理的redis常见的报错 和解决方案,收纳中,希望给大家帮助。的全部内容,希望文章能够帮你解决redis常见的报错 和解决方案,收纳中,希望给大家帮助。所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部