码迷,mamicode.com
首页 > 其他好文 > 详细

zookeeper安装

时间:2018-08-16 20:58:00      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:apache   between   sync   ini   path   zoo.cfg   lan   否则   com   

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安装

标签:apache   between   sync   ini   path   zoo.cfg   lan   否则   com   

原文地址:https://www.cnblogs.com/yuanpeng-java/p/9489335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!