系列文章目录
Zookeeper简介
文章目录
前言
Linux下Zookeeper安装步骤
一、选择安装包
Zookeeper下载地址:https://zookeeper.apache.org/releases.html
选择一个稳定版本即可,我这里选择的是3.7.2
点击"Apache ZooKeeper 3.7.2",进入到此页面
选择此网址,使用wget命令安装。(大多数linux发行版本中,都默认安装了wget。使用which wget或者用rpm -qa | grep wget可检查是否安装wget。对于Debian/Ubuntu系统,可以使用 sudo apt-get install wget 命令来安装 wget。)
二、使用wget下载并安装zookeeper
执行此命令下载版本包
wget https://dlcdn.apache.org/zookeeper/zookeeper-3.7.2/apache-zookeeper-3.7.2-bin.tar.gz
注释:-bin 表示这是一个预编译的二进制版本。也就是说,这个版本是已经编译好的,可以直接运行。
当版本包下载完毕后,执行以下步骤
#解压版本包
tar -zxvf apache-zookeeper-3.7.2-bin.tar.gz
#进入到zookeeper的配置目录下
cd apache-zookeeper-3.7.2-bin/conf/
#cp cfg文件
cp zoo_sample.cfg zoo.cfg
cd .../bin/
#启动zookeeper服务
sh zkServer.sh start
查看服务端状态:sh zkServer.sh status
此时的Zookeeper服务端安装完毕并启动成功。