【CentOS6】Zookeeper介绍、安装、配置、应用

介绍

最新版本3.4.6

官网:

http://zookeeper.apache.org/

安装

此处安装分为3个步骤

一、安装JDK

二、配置防火墙iptables

三、安装

wget http://apache.fayea.com/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz
tar -xzvf zookeeper-3.4.6.tar.gz
cp -r zookeeper-3.4.6 /usr/zookeeper

配置

[root@localhost ~]# cd /usr/zookeeper
[root@localhost zookeeper]# ls
bin        CHANGES.txt  contrib     docs             ivy.xml  LICENSE.txt  README_packaging.txt  recipes  zookeeper-3.4.6.jar      zookeeper-3.4.6.jar.md5
build.xml  conf         dist-maven  ivysettings.xml  lib      NOTICE.txt   README.txt            src      zookeeper-3.4.6.jar.asc  zookeeper-3.4.6.jar.sha1
[root@localhost zookeeper]# cd conf
[root@localhost conf]# ls
configuration.xsl  log4j.properties  zoo_sample.cfg
[root@localhost conf]# cp zoo_sample.cfg zoo.cfg
[root@localhost conf]# vim zoo.cfg

应用

介绍bin,在该目录下有四个shell文件:

#启动Zookeeper

./bin/zkServer.sh start


停止Zookeeper

./bin/zkServer.sh stop


#查看Zookeeper的状态

./bin/zkServer.sh status


zkServer.sh还有其它几个参数:start-foreground、restart、upgrade、print-cmd,分别用于在前台启动、重启、更新、操作。

连接本机的Zookeeper

./bin/zkCli.sh

连接非本机的Zookeeper

./bin/zkCli.sh -server nginx2:2181



你可能感兴趣的:(zookeeper)