zookeeper集群安装

1、Apache官网下载zookeeper安装包

Index of /dist/zookeepericon-default.png?t=LBL2http://archive.apache.org/dist/zookeeper/这里说明一下,使用新版本在启动时会报错Starting zookeeper … FAILED TO START

原因:版本:3.6.1,实际上只要 >= 3.5.5 版本都会出现这种问题。

# 上传安装包
cd /opt
# 解压压缩包
tar -zxvf zookeeper-3.4.14.tar.gz

2、修改配置文件

# 创建一个数据存储目录以及日志存储目录 
cd /opt
mkdir -p zookeeper/data
mkdir -p zookeeper/logs

# 修改zk配置文件
cd /opt/zookeeper-3.4.14/conf
# 复制一份配置文件,名为zoo.cfg
cp zoo_sample.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.
# do not use /tmp for storage, /tmp here is just 
# example sakes.
dataDir=/opt/zookeeper/data
# 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

server.1=192.168.1.11:2888:3888
server.2=192.168.1.12:2888:3888
server.3=192.168.1.13:2888:3888

加入本机节点信息

cd /opt/zookeeper/data/

# 新建一个myid
touch myid

# 编辑
vi myid 或者执行echo 1 >myid

# 写入server.n后面的n
# 每台机器的值不同,根据前面zookeeper的zoo.cfg中server.n来加入不同的内容

配置zookeeper的环境变量

echo "export PATH=$PATH:/opt/zookeeper-3.4.14/bin" >>/etc/profile
source /etc/profile

3、启动与停止

# 进入到安装bin目录
cd /opt/zookeeper-3.4.14/bin
#启动
./zkServer.sh start &

#关闭
./zkServer.sh stop

#查看状态
./zkServer.sh status

 

 

*** 启动后会在 /opt/zookeeper-3.4.14/bin目录下生成zookeeper.out,记录启动错误日志。

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值