redis.connection.{oolException:Could not get a resource from the pool
时间: 2023-11-04 09:00:59 浏览: 293
分布式实现redis锁 出现错误Could not get a resource from the pool
redis.connection.PoolException是一个连接池异常,通常是由于连接到redis时出现了问题导致的。在你提供的引用中,有几个可能的原因和解决方案。
引用中提到的错误信息是由于在redis配置中没有配置默认用户的密码,在yaml配置文件中需要正确设置密码。
引用中提到的解决方案是检查redis配置文件中是否注释了bind 127.0.0.1这一行,如果没有注释掉这一行,可能导致连接不上。
另外,还有一些可能与版本相关的问题。你提供的引用中指出了使用的redis版本、springboot版本和spring-data-redis版本,这些版本之间的兼容性也可能导致连接池异常。
综上所述,你可以尝试以下解决方案:
1. 在yaml配置文件中正确设置redis连接的密码。
2. 检查redis配置文件中是否注释了bind 127.0.0.1这一行。
3. 确保使用的redis版本、springboot版本和spring-data-redis版本兼容。
阅读全文