zookeeper安装(单节点)及基本操作

zookeeper安装(单节点)及基本操作

本文主要介绍如何安装单点的zookeeper,并且会介绍一下zookeeper的实用工具。
好,下面上货。
本文主要参考:
官网:https://zookeeper.apache.org/
下载地址:https://mirrors.tuna.tsinghua.edu.cn/apache/zookeeper/stable/
参考文档:https://zookeeper.apache.org/doc/trunk/zookeeperStarted.html

1、首先在下载地中下载最新的zookeper安装包。
2、把安装包tar开,到指定的文件夹。
3、修改配置文件zookeeper/conf/zoo.cfg,如果没有需要从zoo_example.cfg复制一个。
# The number of milliseconds of each tick
tickTime=2000
# The number of ticks that the initial 
# synchronization phase can take
initLimit=10
# The number of ticks that can pass between 
# sending a request and getting an acknowledgement
syncLimit=5
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just 
# example sakes.
dataDir=/data/zookeeperdata
# the port at which the clients will connect
clientPort=2181

4、启动zookeeper(注意修改环境变量 vim /etc/profile)。
使用命令zkServer.sh start

5、启动后,查看一下zookeeper的运行状态。
lsof -i:2181

6、使用工具zookeeperInspector对zookeeper中的数据进行监控(这个工具可以在我的百度网盘上下载http://pan.baidu.com/s/1eS09oxs)

7、运行这个工具后,可以对zookeeper中的数据进行监控。
zookeeper安装(单节点)及基本操作_第1张图片

8、使用zookeeper的zkCli对zookeeper进行操作。具体的使用命令是./zlCli.sh -server 192.169.0.11:2181。进入后能够正常的使用zk的命令了。
查看节点 ls /
添加节点 create /zk_test c
添加子节点 create /zk_test/data c
删除节点 delete /zk_test/data

ok!本文就介绍到这里。



你可能感兴趣的:(zookeeper)