欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

一些bug

程序员文章站 2024-01-29 23:37:28
...

Redis 问题:Caused by: redis.clients.jedis.exceptions:ERR Client sent AUTH, but no password is set

redis默认没有密码,但在代码连接中却设置了密码,所以应该将代码中的password注释掉

redis:
        database: 0
        hostName: 127.0.0.1
        port: 6379
       # password: 123456 
        timeout: 6000  # 连接超时时长(毫秒)

 

在redis中设置密码:

一些bug

 

一些bug

原来的没有密码是requirepass foodbared     改成123456就将密码设置成123456了。

 

 

相关标签: bug