zookeeper安装

Posted yuanpeng-java

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zookeeper安装相关的知识,希望对你有一定的参考价值。

Zookeeper是一个协调服务,可以用它来作为配置维护、名字服务、分布式部署;

下面,我来分享一下在Linux下安装Zookeeper的整个步骤,让大家少走弯路。

 

一、Zookeeper下载

   wget http://mirror.bit.edu.cn/apache/zookeeper/zookeeper-3.3.6/zookeeper-3.3.6.tar.gz 

二、解压

   tar -zxvf /home/lk/下载/zookeeper-3.3.6.tar.gz 

解压完之后,会在deploy文件夹下面得到一个zookeeper-3.3.6的文件夹


三、进入到conf目录

   cd /opt/deploy/zookeeper-3.3.6/conf

四、拷贝zoo_samle.cfg为zoo.cfg

   cp zoo_sample.cfg zoo.cfg

 

 

五、编辑zoo.cfg文件

  vi zoo.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.
dataDir=/usr/zookeeper
dataLogDir=/usr/zookeeper/log
# the port at which the clients will connect
clientPort=2181
server.1=192.168.32.129:2888:3888

 

 

 

六、设置环境变量  vi/etc/profile

#zookeeper环境配置
export ZOOKEEPER_HOME=/server/zookeeper-3.4.12
export PATH=$ZOOKEEPER_HOME/bin:$PATH

  source /etc/profile

七、启动

   ./zkServer.sh start

八、测试zookeeper

   /zkCli.sh -server 192.168.32.129:2181

如果是本地连接,那么不需要 -server 192.168.32.129:2181,默认是本地

 

注意:如果出现拒绝连接,请检查如下:

 

1、防火墙是否关闭  systemctl stop firewalld

2、需要将192.168.32.129 映射到本地 /etc/hosts文件中,否则无法连接

 

 




以上是关于zookeeper安装的主要内容,如果未能解决你的问题,请参考以下文章

zookeeper安装

ZooKeeper伪分布集群安装及使用 RMI+ZooKeeper实现远程调用框架

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

PHP代码-psysh调试代码片段工具

zookeeper的安装与配置 (单机版)

教你一招如何使用几行代码实现zookeeper作为springcloud的服务注册中心