高效解决 springBoot 集成 Redis 出现的: Unable to connect to Redis 问题

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/wandongshengno_1/article/details/102749689

报错如下:

org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to 192.168.136.222:6379

	at org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1189)
	at org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1168)
	

解决办法:

  1. 查看有没有启动Redis服务器。

  2. redis的配置application.yml(或application.properties)中
    spring.redis.timeout连接超时时间(毫秒)中设置不能为0,
    一般修改如下:spring.redis.timeout=5000。

  3. 找到redis的配置文件 redis.conf : 执行 vim redis.conf
    3.1 protected-mode yes 改为 protected-mode no (即该配置项表示是否开启保护模式,默认是开启,开启后Redis只会本地进行访问,拒绝外部访问)。
    3.2 注释掉 bin127.0.0.1 即 #bin 127.0.0.1 (ps: 指定 redis 只接收来自于该 IP 地址的请求,如果不进行设置,那么将处理所有请求)。

  4. 如果在Redis中没有配置requirepass ,那么在application.properties(或application.yaml)中就不要写spring.redis.password。

猜你喜欢

转载自blog.csdn.net/wandongshengno_1/article/details/102749689