Cannot get jedis connection Could not get a resource from the pool 解决办法

redis报错

org.springframework.data.redis.RedisConnectionFailureException:Cannot get Jedis connection; nested exception isredis.clients.jedis.exceptions.JedisConnectionException: Could not get aresource from the pool

         atorg.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:204)

         atorg.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:348)

         atorg.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:129)

我确定自己电脑的redis是打开的,防火墙设置也没有问题,密码默认是没有的不用填写。不知道错在了哪里。后来问一个技术高超的同事,才知道redis默认只能本机访问ip默认地址是127.0.0.1而我填写的是IPv4地址,所以redis无法识别导致报错。将配置改成下图之后,运行成功了。



猜你喜欢

转载自blog.csdn.net/majishushu/article/details/80686322