centos下安装ZooKeeper

1.需求html

安装ZooKeeper,metaQapache

2.下载服务器

http://zookeeper.apache.org/releases.htmlide

当前stable版是zookeeper-3.4.6oop

3.解压ui

tar –xf zookeeper-3.4.6.tar.gzthis

解压文件到"/usr/local/zookeeper-3.4.6".spa

4.复制conf目录下的zoo_sample.cfg,并命名为zoo.cfgserver

5.修改zoo.cfg配置文件htm

复制代码

# 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=/datatmp/zookeeper/data
dataLogDir=/datatmp/zookeeper/logs

# the port at which the clients will connect
clientPort=2181
# the maximum number of client connections.
# increase this if you need to handle more clients
#maxClientCnxns=60
#
# Be sure to read the maintenance section of the 
# administrator guide before turning on autopurge.
#
http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
#
# The number of snapshots to retain in dataDir
#autopurge.snapRetainCount=3
# Purge task interval in hours
# Set to "0" to disable auto purge feature
#autopurge.purgeInterval=1


#2888,3888 are election port
server.1=zookeeper:2888:38888

复制代码

其中,2888端口号是服务之间通讯的端口,而3888是;zookeeper与其余应用程序通讯的端口.而zookeeper是在hosts中已映射了本机的IP.

initLimit:这个配置项是用来配置Zookeeper接受客户端(这里所说的客户端不是用户链接Zookeeper服务器的客户端,而是Zookeeper服务器集群中链接到 Leader 的 Follower 服务器)初始化链接时最长能忍受多少个心跳时间间隔数。当已经超过 10 个心跳的时间(也就是 tickTime)长度后 Zookeeper 服务器尚未收到客户端的返回信息,那么代表这个客户端链接失败。总的时间长度就是 5*2000=10 秒。
syncLimit:这个配置项标识 Leader 与 Follower 之间发送消息,请求和应答时间长度,最长不能超过多少个 tickTime 的时间长度,总的时间长度就是 2*2000=4 秒。
server.A=B:C:D:其中 A 是一个数字,表示这个是第几号服务器;B 是这个服务器的 ip 地址;C 表示的是这个服务器与集群中的 Leader 服务器交换信息的端口;D 表示的是万一集群中的 Leader 服务器挂了,须要一个端口来从新进行选举,选出一个新的 Leader,而这个端口就是用来执行选举时服务器相互通讯的端口。若是是伪集群的配置方式,因为 B 都是同样,因此不一样的 Zookeeper 实例通讯端口号不能同样,因此要给它们分配不一样的端口号。

6.建立dataDir参数指定的目录(这里指的是“ /datatmp/zookeeper/data”),并在目录下建立文件,命名为“myid”。

7.编辑“myid”文件,并在对应的IP的机器上输入对应的编号。如在zookeeper上,“myid”文件内容就是1。因为本次只在单点上进行安装配置,因此只有一个server.1。若还有其余服务器,好比地址为192.168.1.102,则在zoo.cfg文件中还需加入server.2=192.168.1.102:2888:3888。那么myid文件在192.168.1.102服务器上的内容就是2。至此,若是是多服务器配置,就须要将zookeeper-3.4.3目录拷贝到其余服务器,而后按照上述的方法修改myid。

8.在/etc/profile文件中设置PATH
修改profile文件:
sudo vi /etc/profile

 

export ZOOKEEPER_HOME=/home/hadooptest/zookeeper-3.4.3 export PATH=$ZOOKEEPER_HOME/bin:$PATH export PATH

 

OH YEAH!!! 安装完毕!

安装好了,启动搞搞.

1.启动

zookeeper-3.4.6/bin/zkServer.sh start

2.输入jps命令查看进程

1573 QuorumPeerMain 1654 Jps

其中,QuorumPeerMain是zookeeper进程,启动正常。

三、查看状态:zookeeper-3.4.3/bin/zkServer.sh status

- JMX enabled by default Using config: /usr/local/zookeeper-3.4.6/bin/../conf/zoo.cfg Mode: standalone

四、启动客户端脚本:zookeeper-3.4.3/bin/zkCli.sh -server zookeeper:2181

五、中止zookeeper进程:zookeeper-3.4.3/bin/zkServer.sh stop

相关文章
相关标签/搜索