安装Redis之后,报(error) ERR Client sent AUTH, but no password is set

Posted fengyelan2233

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装Redis之后,报(error) ERR Client sent AUTH, but no password is set相关的知识,希望对你有一定的参考价值。

Win10下,在安装完成Redis后,需要登录auth账户,验证是否安装成功。
在redis目录下redis.windows-service.conf文件找到requirepass,追加一行,输入requirepass 123456,即为登录密码,重启redis服务再登录即可。但是我并没有成功,后来发现是需要在命令行设置密码才行

解决步骤如下:
1、启动redis服务
 
2、cmd命令行切换至Redis的文件夹中redis-cli目录或者点击redis-cli右击以管理员身份运行,打开命令窗口
‪C:\\Users\\guifang.feng>cd C:\\Tools\\redis-64.3.0.503
 
3、查看是否设置了密码:
127.0.0.1:6379> auth 123456
(error) ERR Client sent AUTH, but no password is set
 
4、需要命令设置密码,命令如下:
127.0.0.1:6379> config set requirepass 12345
OK   
出现OK了,说明设置成功

5、再尝试登录
redis 127.0.0.1:6379> AUTH 123456
(error) ERR invalid password
仔细看,发现密码输入跟前面设置的不一样,需要仔细!!!
 
6、再次登录,可以登录成功
redis 127.0.0.1:6379> AUTH 123456
OK

 

 

以上是关于安装Redis之后,报(error) ERR Client sent AUTH, but no password is set的主要内容,如果未能解决你的问题,请参考以下文章

02 Redis关闭服务报错---(error) ERR Errors trying to SHUTDOWN. Check logs.

问题解决(error) ERR Errors trying to SHUTDOWN. Check logs

org.redisson.client.RedisException: ERR Error running script,redis连接集群错误

npm 安装报错 “npm ERR! code Z_BUF_ERROR“ 解决方法

Redis 2.8.18 安装报错 error: jemalloc/jemalloc.h: No such file or directory

解决报错:from err django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module. Did you ins