搞了一下午,发现是个很小的问题。心态小崩,记录一下吧。
地址映射阿里云服务器在 /etc/hosts
阿里云服务器内网ip地址 阿里云服务器实例主机名
mac文件位于 /private/etc/hosts 修改配置文件 添加
阿里云服务器外网ip地址 阿里云服务器实例主机名防火墙
mac 和 服务器的防火墙关闭
systemctl stop firewalld systemctl status firewalld开启zk服务器 安全组端口开启
开了个安全组端口就成功了 纠结了一下午的报错就这 谁懂
public class testZkConnection { .//使用的是外网ip地址 String connectString="112.124.38.221:2181"; int sessionTimeout=3000; ZooKeeper zkClient; @Before public void init() throws IOException { zkClient = new ZooKeeper(connectString, sessionTimeout, new Watcher(){ @Override public void process(WatchedEvent watchedEvent) { System.out.println(zkClient); } }); } @Test public void create() throws KeeperException, InterruptedException { String nodeCreated = zkClient.create("/atcompany", "ss.avi".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); } }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)