点击跳转官网下载
或者直接在linus中输入一下命令
wget https://archive.apache.org/dist/zookeeper/zookeeper-3.4.11/zookeeper-3.4.11.tar.gz
在这里你可以选择你喜欢的上传方式将你下载好的tar包上传到linus中. 可以新建一个文件夹放到里面即可,安装好之后删除就可以了.
[root@localhost tmp]#tar -zxvf zookeeper-3.4.10.tar.gz
[root@localhost tmp]# cp zookeeper-3.4.10 /usr/local/zookeeper -r //复制所有文件到zookeeper 文件夹下
[root@localhost tmp]# cd /usr/local/zookeeper //切换到/usr/local/zookeeper目录下
[root@localhost zookeeper]# cd conf //切换到目录下
[root@localhost conf]# ll //显示目录下的信息
总用量 12
-rw-r--r--. 1 root root 535 5月 8 18:17 configuration.xsl
-rw-r--r--. 1 root root 2161 5月 8 18:17 log4j.properties
-rw-r--r--. 1 root root 922 5月 8 18:17 zoo_sample.cfg
[root@localhost conf]# cp zoo_sample.cfg zoo.cfg //copy一份到当前目录下,并命名为zoo.cfg
[root@localhost conf]# ll
总用量 16
-rw-r--r--. 1 root root 535 5月 8 18:17 configuration.xsl
-rw-r--r--. 1 root root 2161 5月 8 18:17 log4j.properties
-rw-r--r--. 1 root root 922 5月 8 18:29 zoo.cfg
-rw-r--r--. 1 root root 922 5月 8 18:17 zoo_sample.cfg
[root@localhost conf]#
[root@localhost conf]# vi zoo.cfg
dataDir=/tmp/zookeeper
dataLogDir=/tmp/zookeeper/log
前提是要创建/tmp/zookeeper和/tmp/zookeeper/log目录,不然启动时会报错。
[root@localhost zookeeper]# vi /etc/profile //编辑文件
[root@localhost zookeeper]# source /etc/profile //使生效
export ZOOKEEPER=/usr/local/zookeeper
export PATH=$PATH:$ZOOKEEPER/bin
因为配置了环境变量,所以在任意目录下都可以运行以下启动命令启动Zookeeper。
[root@localhost ~]# zkServer.sh start //启动
[root@localhost ~]# zkServer.sh status //查看运行状态
[root@localhost ~]# zkCli.sh //启动客户端
在/etc/init.d目录下新建zookeeper文件
vi /etc/init.d/zookeeper //vi 编辑zookeeper文件,不存在时就创建该文件
#!/bin/bash
ZK_PATH=/usr/local/zookeeper
export JAVA_HOME=/usr/local/java/jdk1.8.0_171
case $1 in
start) sh $ZK_PATH/bin/zkServer.sh start;;
stop) sh $ZK_PATH/bin/zkServer.sh stop;;
status) sh $ZK_PATH/bin/zkServer.sh status;;
restart) sh $ZK_PATH/bin/zkServer.sh restart;;
*) echo "require start|stop|status|restart" ;;
esac
chkconfig --add zookeeper
你可以使用chkconfig --list查看你的注册操作时否成功
chmod +x /etc/init.d/zookeeper
万事具备,可以试一试了。
service zookeeper start (开启)
service zookeeper stop (关闭)
service zookeeper status (查看状态)
service zookeeper restart (重启)