不能从连接池获取连接的最大可能是,Redis服务器所在的主机中防火墙没有开放redis的端口,开放方式是:
/etc/sysconfig/iptables
在iptables文件中加入
-A INPUT -m state --state NEW -m tcp -p tcp --dport 6379 -j ACCEPT
重启iptables
service iptables restart
问题解决了!
还有一种可能是redis.conf文件中绑定的ip设定为127.0.0.1,这样的话,就会造成连接不上的问题,解决办法是注释掉这段代码,或者绑定客户端的ip
1)注释掉
#bind 127.0.0.1
2) 加入我客户端的ip是192.168.1.11 ,而redis服务器所在的ip是192.168.1.12,我们需要在redis服务器中修改redis.conf这个文件,将ip绑定为我客户端的ip
#bind 192.168.1.11
问题解决了!
相关文章
- 通过jedis连接redis单机成功,使用redis客户端可以连接集群,但使用JedisCluster连接redis集群一直报Could not get a resource from the pool
- jedis 连接 redis:Could not get a resource from the pool——我的出错原因和解决办法
- redis中 Could not get a resource from the pool 异常解决
- Redis客户端连接异常:Could not get resource from the pool 解决办法
- Redis客户端连接异常:Could not get resource from the pool 解决办法
- redis JedisConnectionException: Could not get a resource from the pool
- redis中 Could not get a resource from the pool 异常解决
- redis---Redis一个异常的解决办法,异常描述:Could not get a resource from the pool
- 处理应用端连接redis报could not get a resource from the pool问题
- 处理应用端连接redis报could not get a resource from the pool问题