springboot整合redis,用户和密码的关系导致Unable to connect to Redis;
错误的配置spring.redis.username=aaspring.redis.password=123456spring:redis:database: 0host: 127.0.0.1port: 6379username: aapassword: 123456timeout: 1000今天配置的时候username也配置上了,导致Unable to connect to Redis异常,总
·
错误的配置
spring.redis.username=aa
spring.redis.password=123456
spring:
redis:
database: 0
host: 127.0.0.1
port: 6379
username: aa
password: 123456
timeout: 1000
今天配置的时候username也配置上了,导致Unable to connect to Redis异常,总结一下:如果有用户名的话直接配置password=username:password。不要分开配置
即:
spring.redis.password=aa:123456
更多推荐
已为社区贡献1条内容
所有评论(0)