ZooKeeper3.4.5-搭建环境

1.下载官方提供的包

访问zookeeper官网,在对应的页面下载可靠的发布版本。

2.先在第一台电脑上完成配置

2.1备份原始配置

首先,我们需要把包放置在某一台服务器上,修改它的配置文件,我们需要在zookeeper-3.4.5/conf目录下找到zoo_sample.cfg。复制这份配置文件为zoo.cfg

cp zoo_sample.cfg zoo.cfg

2.2修改配置文件内容

在备份好示例配置之后,我们打开文件,它应当是基本上这个内容:

# 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=/root/zkdata
# the port at which the clients will connect
clientPort=2181
#
# 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

每一个配置,都有相应的英文注释。大部分内容我们是不需要修改的。我们只需要学习一下,其中clientPort=2181标志着客户端端口为2181.dataDir=/root/zkdata表示指定数据存储目录为dataDir=/root/zkdata. 我们需要追加所有zookeeper节点信息:

server.1=mini1:2888:3888
server.2=mini2:2888:3888
server.3=mini3:2888:3888

2.3创建myid

由于我们指定了数据文件目录,所以我们应该创建相应的目录,为了防止后续出现一些bug,我们在这个版本需要手动创建myid文件。

mkdir /root/zkdata
vi myid

在myid中输入自己的序号即可,比如我们在配第一台,就写入一个1即可。

3 复制目录至其它服务器

由于已经配置好了免密登陆,这个时候我们可以通过scp命令复制文件到指定目录。

scp -r /root/apps/zookeeper-3.4.5/ root@mini2:/root/

4 分别创建和生成数据目录,注意顺序地修改里面的数字。

5 将这一过程制作为自动化脚本

转载于:https://my.oschina.net/hengbao666/blog/1632191

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值