CLUSTERDOWN The cluster is down
2020-03-12redis集群报 CLUSTERDOWN The cluster is down错误
1、set name a
CLUSTERDOWN The cluster is down
2、java.lang.RuntimeException: redis.clients.jedis.exceptions.JedisClusterException: CLUSTERDOWN The cluster is down
redis.clients.jedis.exceptions.JedisClusterException: CLUSTERDOWN The cluster is down
3、解决
./redis-cli fix 173.168.68.221:7001
./redis-cli --cluster fix redis1:7101
该命令是修复宕机的服务,如果时多个服务宕机 就多个服务需要重新 fix 一下,修复之后如下。
4、redis -h redis1 -p 7101
cluster info;
(error) MOVED 6918 172.16.91.126:7101
这种情况一般是因为启动 redis-cli 时没有设置集群模式所导致
启动时使用 -c 参数来启动集群模式,命令如下:
redis -h redis1 -p 7101 -c