• 在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环境下的安装

    下载与安装

    访问地址: 

  • 相关阅读:
    视频转音频怎么转?来试试这三个方法
    学习笔记6--车辆线控系统
    22-06-28 西安 redis(02) 持久化机制、入门使用、事务控制、主从复制机制
    11.12 - 每日一题 - 408
    选择困难?我如何实现可道云KODBOX与KODEXPLORE共存。
    [Jenkins] Docker 安装Jenkins及迁移流程
    KoTime:v2.3.6-新增当前Java程序占用的内存统计以及页面刷新功能
    java-php-python-ssm郑工社团交流服务信息平台计算机毕业设计
    NAS磁盘挂载
    OA与CRM与ORACLE
  • 原文地址:https://blog.csdn.net/java_lujj/article/details/126951083