redis.clients.jedis.exceptions.JedisDataException: NOAUTH Authentication required的解决方案之一
·
SpringBoot 项目遇到redis.clients.jedis.exceptions.JedisDataException: NOAUTH Authentication required
报错
原因:主要就是redis或jedis的密码认证不通过,需要加上密码
检查项目的配置文件或者本地设置
如项目的【.properties】或【.yml】配置文件
# Redis相关配置
spring.redis.host=
spring.redis.port=
spring.redis.password=1检查这里
spring.redis.database=
spring.redis.dbListener=
spring.redis.jedis.pool.max-active=
spring.redis.jedis.pool.max-idle=
spring.redis.jedis.pool.max-wait=
spring.redis.jedis.pool.min-idle=
spring.redis.shiroHost=
spring.redis.shiroPort=
spring.redis.shiroPwd=2检查这里
spring.redis.dbListener=
小编的错误在2这里没有填写,也不知道谁在开发的时候把这个不小心删掉了!
如果是本地的redis密码添加或修改,两种修改方案:
一、修改文件
1、找到redis.windows.conf
文件打开设置requirepass xxx
保存
2、新建文件redis.txt放入redis-server.exe和redis.windows.conf的路径
F:/Redis/Redis-x64-3.2.100/redis-server.exe F:/Redis/Redis-x64-3.2.100/redis.windows.conf
3、修改.txt文件后缀为.bat
文件
4、启动本地redis——双击redis.bat文件
二、命令行修改
先打开redis-server.exe,再打开redis-cli.exe
查看密码:config get requirespass
密码设置:config set requirespass xxx
密码验证:auth xxx
更多推荐
已为社区贡献5条内容
所有评论(0)