redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool

来源:互联网 发布:linux user id 编辑:程序博客网 时间:2024/05/23 05:07

通过VPN连接 内网的 CentOS 6.5系统,上面安装的redis Server  (3.2版本)

windows开发环境Eclipse连接redis报错


org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:162)
at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:251)
at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:58)
at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:128)
at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:91)
at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:78)



Redis 的配置文件默认是绑定本地ip的,解决方式是 将Redis 的redis.conf 文件中 bind 127.0.0.1注释掉。


0 0