SpringBoot连接Redis失败问题

SpringBoot集成Redis连接不上的问题

问题描述
初学SpringBoot

当进行SpringBoot集成Redis时。测试向redis中添加String类型的数据,key=name , value = zlw。
但出现了一下错误:(Whitelabel Error Page)

image-20220612105150148

看控制台输出发现,大致应该是redis没有连接成功。

1
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to 192.168.86.129/<unresolved>:6379] with root cause

上网搜索了好多这个问题的错误,但好像都没有解决,不是自己的错误,但后来回想到,学习linux的时候,想要连接成功必须要关闭linux的防火墙才行。。。

试一试

image-20220612105210233

可以看到防火墙已经关闭了,

哇~有新发现了,,虽然页面还是没有变化,但控制台的信息发生了变化。提示:

1
WRONGPASS invalid username-password pair or user is disabled.

这应该是我的redis密码有问题。。

这应该是我的redis密码有问题。。

原来是我的密码加上了引号
记住:密码要去掉引号!!!

去掉双引号之后再次访问,成功!!

image-20220612105234002


SpringBoot连接Redis失败问题
http://example.com/2022/06/12/SpringBoot连接Redis失败问题/
作者
zlw
发布于
2022年6月12日
许可协议