JedisClusterMaxRedirectionsException: Too many Cluster redirections

在测试redis集群的时候遇到错误:
redis.clients.jedis.exceptions.JedisClusterMaxRedirectionsException: Too many Cluster redirections?

错误原因:
创建redis集群的时候使用的命令是:./redis-trib.rb create --replicas 1 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 127.0.0.1:7006

但是由于Java客户端在集群之外所以是这样写的:

    @Test
	public void redisTest88(){

		HashSet<HostAndPort> nodes = new HashSet<HostAndPort>();
		boolean add = nodes.add(new HostAndPort("192.168.11.88", 7000));
		nodes.add(new HostAndPort("192.168.11.88", 7001));
		nodes.add(new HostAndPort("192.168.11.88", 7002));
		nodes.add(new HostAndPort("192.168.11.88", 7003));
		nodes.add(new HostAndPort("192.168.11.88", 7004));
		nodes.add(new HostAndPort("192.168.11.88", 7005));
		nodes.add(new HostAndPort("192.168.11.88", 7006));
		JedisCluster cluster = new JedisCluster(nodes);
		System.out.println("cluster:"+cluster);
		String string = cluster.get("key1");
		System.out.println(string);
		try {
			if(cluster != null){
				cluster.close();
			}
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}

host地址不匹配,导致Too many Cluster redirections

解决方法:
1)将每个节点下aof、rdb、nodes.conf本地备份文件删除;
2)启动所有redis节点;
3)重新构建集群使用:./redis-trib.rb create --replicas 1 192.168.11.88:7001 192.168.11.88:7002 192.168.11.88:7003 192.168.11.88:7004 192.168.11.88:7005 192.168.11.88:7006

转载于:https://my.oschina.net/sssmile/blog/1204523

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值