0


【环境搭建】Apache ZooKeeper 3.8.4 Stable

软件环境

Ubuntu 20.04 、OpenJDK 11

OpenJDK 11(如果已经安装,可以跳过这一步)

安装OpenJDK 11:

  1. $ sudo apt-get update
  2. $ sudo apt-get install -y openjdk-11-jdk

设置 JAVA_HOME 环境变量:

  1. $ sudo gedit ~/.bashrc

添加内容:

  1. export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
  2. export PATH=$PATH:$JAVA_HOME/bin

环境变量生效:

  1. $ source ~/.bashrc

验证:

  1. $ java --version

获取 Zookeeper

进入 Zookeeper 官网Apache ZooKeeper,找到Downloads,直接下载编译好的安装包,不然下载源码还要自己手动编译比较麻烦,我们选择Apache ZooKeeper 3.8.4 Stable:

复制这个HTTP网址:

使用

  1. wget

下载到本地:

  1. $ wget https://dlcdn.apache.org/zookeeper/zookeeper-3.8.4/apache-zookeeper-3.8.4-bin.tar.gz --no-check-certificate

解压:

  1. $ tar -zxvf apache-zookeeper-3.8.4-bin.tar.gz

将解压后的文件移动到合适的目录,例如

  1. /opt/zookeeper

  1. $ sudo mv apache-zookeeper-3.8.4-bin /opt/zookeeper

配置 Zookeeper

  1. /opt/zookeeper/conf

目录下,复制一份默认配置文件示例:

  1. $ cd /opt/zookeeper/conf
  2. $ sudo cp zoo_sample.cfg zoo.cfg

打开

  1. zoo.cfg

文件,找到并修改

  1. dataDir

参数,指定 Zookeeper 存储数据的目录:

  1. $ sudo gedit zoo.cfg

改为以下内容:

  1. # The number of milliseconds of each tick
  2. tickTime=2000
  3. # The number of ticks that the initial
  4. # synchronization phase can take
  5. initLimit=10
  6. # The number of ticks that can pass between
  7. # sending a request and getting an acknowledgement
  8. syncLimit=5
  9. # the directory where the snapshot is stored.
  10. # do not use /tmp for storage, /tmp here is just
  11. # example sakes.
  12. dataDir=/var/lib/zookeeper/data
  13. # the port at which the clients will connect
  14. clientPort=2181
  15. # the maximum number of client connections.
  16. # increase this if you need to handle more clients
  17. #maxClientCnxns=60
  18. #
  19. # Be sure to read the maintenance section of the
  20. # administrator guide before turning on autopurge.
  21. #
  22. # https://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
  23. #
  24. # The number of snapshots to retain in dataDir
  25. #autopurge.snapRetainCount=3
  26. # Purge task interval in hours
  27. # Set to "0" to disable auto purge feature
  28. #autopurge.purgeInterval=1
  29. ## Metrics Providers
  30. #
  31. # https://prometheus.io Metrics Exporter
  32. #metricsProvider.className=org.apache.zookeeper.metrics.prometheus.PrometheusMetricsProvider
  33. #metricsProvider.httpHost=0.0.0.0
  34. #metricsProvider.httpPort=7000
  35. #metricsProvider.exportJvmInfo=true

此外,可以根据需要修改

  1. clientPort

参数来指定 Zookeeper 服务端口,默认是

  1. 2181

。如果要配置 Zookeeper 集群,还需要在

  1. zoo.cfg

文件中添加其他节点信息。

创建相应的目录:

  1. $ sudo mkdir -p /var/lib/zookeeper/data

给予目录所有者读写执行权限,给所属组和其他用户读执行权限:

  1. $ sudo chmod -R 755 /var/lib/zookeeper/data

启动 Zookeeper

  1. /opt/zookeeper/bin

目录添加到系统的

  1. PATH

环境变量中:

  1. $ sudo gedit ~/.bashrc

添加内容如下:

  1. export PATH=$PATH:/opt/zookeeper/bin

环境变量生效:

  1. $ source ~/.bashrc

先切换为root shell,否则权限不够:

  1. $ sudo su

启动 Zookeeper:

  1. $ zkServer.sh start

出现问题:

解决:

权限不够,切换root shell即可。

出现问题:

  1. # zkServer.sh start
  2. zkServer.sh: command not found

解决:

在root shell里按照刚才的步骤再添加一次环境变量并生效即可。

检查 Zookeeper 服务的状态,确保其正常启动:

  1. # zkServer.sh status


本文转载自: https://blog.csdn.net/Mitchell_Donovan/article/details/143420252
版权归原作者 Mitch311 所有, 如有侵权,请联系我们删除。

“【环境搭建】Apache ZooKeeper 3.8.4 Stable”的评论:

还没有评论