赞
踩
目录
地址:Index of /dist/zookeeper/zookeeper-3.5.7 (apache.org)
mkdir /zookeeper
tar -zxvf apache-zookeeper-3.5.7-bin.tar.gz -C ./
mv zoo_sample.cfg zoo.cfg
mkdir /zookeeper/apache-zookeeper-3.5.7-bin/data
修改为为刚才创建的文件夹路径
进入bin目录
./zkServer.sh start
启动成功
- @Test
- public void curatorCreate() throws Exception {
- // 创建节点。如果没有设置节点属性,节点创建模式默认为持久化节点,内容默认为空
- client.create()
- // 如果需要,递归创建节点
- .creatingParentsIfNeeded()
- // 指定创建节点类型
- .withMode(CreateMode.PERSISTENT)
- // 节点路径和数据
- .forPath("/test/test1", "this is a book".getBytes(StandardCharsets.UTF_8));
- }
创建成功
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。