0
点赞
收藏
分享

微信扫一扫

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

云上笔记 2022-04-14 阅读 49
java后端

报错如下:

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。

举报

相关推荐

0 条评论