java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > SpringBoot 启动报错Unable connect Redis

SpringBoot 启动报错Unable to connect to Redis server: 127.0.0.1/127.0.0.1:6379问题的解决方案

作者:有来技术

这篇文章主要介绍了SpringBoot 启动报错Unable to connect to Redis server: 127.0.0.1/127.0.0.1:6379问题的解决方案,文中通过图文结合的方式给大家讲解的非常详细,对大家解决问题有一定的帮助,需要的朋友可以参考下

问题描述

使用开源项目 youlai-boot 中,使用默认线上配置没问题的,但将 Redis 的修改为本地的环境出现无法连接的错误

启动项目报错关键信息:

org.redisson.client.RedisConnectionException: Unable to connect to Redis server: 127.0.0.1/127.0.0.1:6379

稍微完整的错误信息:

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'securityConfig' defined in file [D:\Project\Work\youlai-boot\target\classes\com\youlai\system\config\SecurityConfig.class]: Unsatisfied dependency expressed through constructor parameter 2: Error creating bean with name 'redisTemplate' defined in class path resource [com/youlai/system/config/RedisConfig.class]: Unsatisfied dependency expressed through method 'redisTemplate' parameter 0: Error creating bean with name 'redissonConnectionFactory' defined in class path resource [org/redisson/spring/starter/RedissonAutoConfigurationV2.class]: Unsatisfied dependency expressed through method 'redissonConnectionFactory' parameter 0: Error creating bean with name 'redisson' defined in class path resource [org/redisson/spring/starter/RedissonAutoConfigurationV2.class]: Failed to instantiate [org.redisson.api.RedissonClient]: Factory method 'redisson' threw exception with message: java.util.concurrent.ExecutionException: org.redisson.client.RedisConnectionException: Unable to connect to Redis server: 127.0.0.1/127.0.0.1:6379

错误截图:

image-20240529175344056

原因分析

再看下修改前后的对比图

线上 Redis 服务配置了密码,而本地 Redis 服务没有密码,因此我们理所当然地将 password 的值留空。然而,这正是问题的根本原因,因为空值仍会被解析为一个空字符串,而不是被忽略。

如果只是这样说是没有说服力的,接下来我将本着“源码面前无秘密”的原则,深入揭示问题的本质。

源码分析

假设本地的 Redis 未配置密码,SpringBoot 的 Redis 连接配置如下:

spring:
  data:
    redis:
      database: 0
      host: 127.0.0.1
      port: 6379
      password:

MasterSlaveConnectionManager#createClient 根据配置创建客户端,其中配置的 password 是空字符串而不是null。

BaseConnectionHandler#channelActive 方法根据配置进行 Redis 客户端连接初始化。由于配置中的 password 被解析成空字符串而非 null,因此尝试使用空字符串作为密码连接 Redis,但由于 Redis 服务未设置密码,连接失败。

image-20240529205521031

解决方案

由上可知,如果将配置的 password 值设置为空,则客户端在连接时会使用空字符串作为密码进行认证。由于服务端未设置密码,因此连接失败。

解决方法其实很简单,如果 Redis 服务未设置密码,需要将 password 注释或删除,而不是设置为空字符串。

spring:
  data:
    redis:
      database: 0
      host: 127.0.0.1
      port: 6379
   	  # 如果 Redis 服务未设置密码,需要将 password 删除或注释,而不是设置为空字符串
      # password:

再次调试可以看到 password 为 null ,直接跳过密码认证,直接返回已完成的 CompletableFuture 对象

以上就是SpringBoot 启动报错Unable to connect to Redis server: 127.0.0.1/127.0.0.1:6379问题的解决方案的详细内容,更多关于SpringBoot 启动报错Unable connect Redis的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文