欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot集成redis错误问题及解决方法

程序员文章站 2024-02-19 16:45:10
描述:spingboot 集成reids (本机连接虚拟机redis服务)出现错误 哇咔咔 当你距离成功只有一步的时候 论那个时候的心情 七上八下!!!!一、错误信息org.springframewo...

描述:spingboot 集成reids (本机连接虚拟机redis服务)出现错误 哇咔咔 当你距离成功只有一步的时候 论那个时候的心情 七上八下!!!!

一、错误信息

org.springframework.data.redis.redisconnectionfailureexception: unable to connect to redis; nested exception is org.springframework.data.redis.connection.poolexception: could not get a resource from the pool; nested exception is io.lettuce.core.redisconnectionexception: unable to connect to 192.168.184.130:6379

SpringBoot集成redis错误问题及解决方法

 二、软件版本

idea 2020.1

redis 2021

SpringBoot集成redis错误问题及解决方法

 linux redis 服务端  6.2.1

SpringBoot集成redis错误问题及解决方法

 xshell 5

vm ware 15.5.1

mysql 8.0

三、基本信息

1. 本机客户端能成功连接redis

SpringBoot集成redis错误问题及解决方法

2. 配置文件无空格

SpringBoot集成redis错误问题及解决方法

3. 防火墙是关闭状态 四、解决

# vim /etc/redis.conf  命令添加 requirepass root 

SpringBoot集成redis错误问题及解决方法

这样设置明文密码有一个已知问题就是

redis-cli 命令ping不通 然后执行auth "密码"就可以了

SpringBoot集成redis错误问题及解决方法

五、其他信息

idea  application.yml配置信息

SpringBoot集成redis错误问题及解决方法

到此这篇关于springboot集成redis错误的文章就介绍到这了,更多相关springboot集成redis内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!