redis.conf中没有配置密码。
application.yml的redis没有配置密码
redis:
database: 0
host: 127.0.0.1
port: 6379
jedis:
pool:
max-active: 1000
max-wait: -1
max-idle: 10
min-idle: 2
timeout: 5000
每次注册都报io.lettuce.core.RedisCommandExecutionException: ERR Client sent AUTH, but no password is set的错误?
会是哪里出了问题?