Set nodes = new HashSet<>();
nodes.add(new HostAndPort("47.94.11.26", 7001));
nodes.add(new HostAndPort("47.94.11.26", 7002));
nodes.add(new HostAndPort("47.94.11.26", 7003));
nodes.add(new HostAndPort("47.94.11.26", 7004));
nodes.add(new HostAndPort("47.94.11.26", 7005));
nodes.add(new HostAndPort("47.94.11.26", 7006));
JedisCluster cluster = new JedisCluster(nodes,5000,100);
cluster.set("test", "test");
System.out.println(cluster.get("test"));
// cluster.close();
访问不到,连接超时
jedis访问云ECS Redis集群
当前问题共有如下(1)个解决方案
题主您好,
如果拿其中的一个端口来测试,好象是监听状态喔,
请问,现在您的程序使用正常了吗?