redis连接错误
连接redis错误:ERR Client sent AUTH, but no password is set
2018-07-04 20:33 by robinli, 4367 阅读, 0 评论, 收藏, 编辑
问题原因:没有设置redis的密码
解决:命令行进入Redis的文件夹:
D:\Redis-x64-3.2.100>redis-cli.exe
查看是否设置了密码:
127.0.0.1:6379> auth root
(error) ERR Client sent AUTH, but no password is set
说明没有设置密码,执行命令:
127.0.0.1:6379> config set requirepass root
OK
出现OK说明设置成功
redis 127.0.0.1:6379> CONFIG SET requirepass "123456"
OK
redis 127.0.0.1:6379> AUTH 123456
Ok
设置下这个配置密码就好了
没有什么比每天有成长进步更高兴的事情