部署Redis集群遇见的异常

1.当在centos7中部署redis集群服务时,报错Node is not empty

需要将提示节点中的数据清空,在节点目录中,选择相应端口

./redis-cli -p 7001 
flushdb

2.代码连接redis时,可能出现如下错误:

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

可能是服务器的防火墙造成的。可以使用如下关闭防火墙:
systemctl stop firewalld.service

2.redis.clients.jedis.exceptions.JedisConnectionException: no reachable node in cluster

可能是由于添加了jedisCluster.close()。把代码中的close()都去掉就可以了。

你可能感兴趣的:(异常)