• 在Windows环境与Linux环境下搭建Zookeeper单机环境与集群环境


    Windows环境下的安装

    下载与安装

    1.访问地址: https://zookeeper.apache.org/releases.html#download下载需要的ZK版本,下载到本地后解压。

    2.在解压目录下面新建一个空的 data 文件夹和 log 文件夹

    配置

    将 conf 目录下的 zoo_sample.cfg 文件,复制一份,重命名为 zoo.cfg

    修改 zoo.cfg 配置文件,将 dataDir=/tmp/zookeeper 修改成 zookeeper 安装目录所在的 data 文件夹,再添加一条添加数据日志的配置

    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=D:\Development\apache-zookeeper-3.6.3-bin\data
    13. dataLogDir=D:\Development\apache-zookeeper-3.6.3-bin\log
    14. # the port at which the clients will connect
    15. clientPort=2181
    16. # the maximum number of client connections.
    17. # increase this if you need to handle more clients
    18. #maxClientCnxns=60
    19. #
    20. # Be sure to read the maintenance section of the
    21. # administrator guide before turning on autopurge.
    22. #
    23. # http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
    24. #
    25. # The number of snapshots to retain in dataDir
    26. #autopurge.snapRetainCount=3
    27. # Purge task interval in hours
    28. # Set to "0" to disable auto purge feature
    29. #autopurge.purgeInterval=1
    30. ## Metrics Providers
    31. #
    32. # https://prometheus.io Metrics Exporter
    33. #metricsProvider.className=org.apache.zookeeper.metrics.prometheus.PrometheusMetricsProvider
    34. #metricsProvider.httpPort=7000
    35. #metricsProvider.exportJvmInfo=true

    启动

    双击bin目录下的zkServer.cmd启动即可

    zookeeper新版本中有个内嵌的管理控制台是通过jetty启动,会占用8080 端口

    解决方法

    1.修改端口

    在zoo.cfg中增加admin.serverPort=没有被占用的端口号
    admin.serverPort=8088

    2.修改启动脚本

    在启动脚本中增加"-Dzookeeper.admin.enableServer=false"
    "-Dzookeeper.admin.enableServer=false"

    Linux环境下的安装

    下载与安装

    访问地址: 

  • 相关阅读:
    C++中多态的原理【精华】
    Spring Boot 3.0.0 GA版本正式发布,期待已久的SpringBoot3发布了
    【Python基础】字典和函数拓展
    S-Clustr(影子集群)新增Nets3e插件,实现一对多主机拍照
    经济2023---风口
    台湾省九齐NY8A051G 内置MOS版本6 I/O 8-bit EPROM-Based MCU
    发布使用npm包过程
    Springboot整合RabbitMQ消息中间件
    淘宝/天猫优惠券查询 API 返回值说明
    2024.7.1 刷题总结
  • 原文地址:https://blog.csdn.net/java_lujj/article/details/126951083