title: 初入zookeeper之安装与配置 date: 2019-09-01 22:48:44 categories: 分布式 toc: true cover: https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1567359455658&di=34285376f655743af81698efb0b8ecca&imgtype=0&src=http%3A%2F%2Fweb3.xin%2Fuploads%2Fimage%2F2017%2F02%2F11%2F20170211145103_33505.jpg tags: [Zookeeper, 分布式, 软件安装与配置]
对于Zookeeper的安装与部署相关总结.
<!--more--> 确保安装了Java 1.6以上的的版本, 并在/etc/profile中配置JAVA_HOME 和PATH等环境变量;
<br/>
从Apache的Zookeeper官网下载稳定版本(尾号双数为稳定版本, 奇数为尝鲜版).
<br/>
通过:
sudo tar -zxvf zookeeper-x.x.x.tar.gz -C /opt/
解压文件.
<br/>
通过 sudo chown user:user -R zookeeper-x.x.x 转换文件所有权.
至此, Zookeeper安装完毕!
<br/>
通过vi /etc/profile, 配置内容如下:
export ZK_HOME=/opt/zookeeper-3.4.14
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH:$ZK_HOME/bin
配置ZK_HOME;
<br/>
初次使用Zookeeper时, 还需要配置文件,将%ZK_HOME/conf/zoo_sample.cfg重命名:
sudo vi %ZK_HOME/conf/zoo_samplee.cfg %ZK_HOME/conf/zoo.cfg
并修改内容:
tickTime=2000
# The number of ticks that the initial
# synchronization phase can take
initLimit=5
# The number of ticks that can pass between
# sending a request and getting an acknowledgement
syncLimit=2
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just
# example sakes.
dataDir=/var/lib/zookeeper/data
dataLogsDir=/var/lib/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
#autpurge.snapRetainCount=3
# Purge task interval in hours
# Set to "0" to disable auto purge feature
#autopurge.purgeInterval=1
server.1=127.0.0.1:2888:3888
<br/>
在根目录下执行:
sudo sh ./bin/zkService.sh start
启动Zookeeper.
<br/>
确保本机中已安装telnet. 并使用:
telnet 127.0.0.1 2181
如果连接成功则说明Zookeeper部署成功;
<br/>
原因:
Ubuntu的默认的shell有问题导致的!
解决:
使用: dpkg-reconfigure dash, 并选择 NO!
<br/>
在根目录执行:
sudo sh ./bin/zkService.sh start-foreground
注意: 推荐将文件所有权给root, 并用sudo执行(Ubuntu下), 防止本地用户权限过大!
此时显示: 170:exec :java:not found
<br/>
解决方案:
# use POSTIX interface, symlink is followed automatically
ZOOBIN="${BASH_SOURCE-$0}"
ZOOBIN="$(dirname "${ZOOBIN}")"
ZOOBINDIR="$(cd "${ZOOBIN}"; pwd)"
JAVA_HOME=/usr/java/jdk1.8.0_201
**最后一行为添加内容**.
此方法亲测有效!
<br/>
未尝试此方法!