org.springframework.data.redis.RedisSystemException Error in execution; nes遇到springboot连接Redis

org.springframework.data.redis.RedisSystemException: Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: NOAUTH Authentication required.

org.springframework.data.redis.RedisSystemException Error in execution; nes遇到springboot连接Redis_第1张图片
这个前提是要检查一下Redis服务是否启动
在使用springboot的2.2.6.RELEASE版本连接Redis的时候,启动报错
org.springframework.data.redis.RedisSystemException Error in execution; nes遇到springboot连接Redis_第2张图片
配置文件是如下

spring.redis.host=127.0.0.1
spring.redis.port=6379

org.springframework.data.redis.RedisSystemException Error in execution; nes遇到springboot连接Redis_第3张图片
报错原因是在安装配置Redis的时候没有给Redis设置密码
现在要设置密码,在springboot配置文件中添加上即可
找到Redis的安装目录,看见 redis.windows.conf 文件
org.springframework.data.redis.RedisSystemException Error in execution; nes遇到springboot连接Redis_第4张图片
添加修改 requirepass属性
org.springframework.data.redis.RedisSystemException Error in execution; nes遇到springboot连接Redis_第5张图片
然后去安装目录找到
org.springframework.data.redis.RedisSystemException Error in execution; nes遇到springboot连接Redis_第6张图片
1.设置密码:config set requirepass “123456”
2.连接redis,认证:auth 123456
org.springframework.data.redis.RedisSystemException Error in execution; nes遇到springboot连接Redis_第7张图片
最后在配置文件中加上密码就行了
org.springframework.data.redis.RedisSystemException Error in execution; nes遇到springboot连接Redis_第8张图片

你可能感兴趣的:(java,redis,spring,boot,java,分布式,开发语言)