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

    下载与安装

    访问地址: 

  • 相关阅读:
    windows 10 更新永久关闭
    探索CPU的黑盒子:解密指令执行的秘密
    Maven各方面配置好了却无法显示版本
    allegro,orcad, net alias,port,off-page connector之间的异同点和如何选取
    对数几率回归的损失函数,线性回归损失函数公式
    手机怎么修改照片大小尺寸?这两种方法轻松解决
    基于Python+Flask+MySQL+HTML的B站数据可视化分析系统
    LeetCode 1413. 逐步求和得到正数的最小值
    C/C++模拟校园卡
    CSS的语法规则——基础选择器
  • 原文地址:https://blog.csdn.net/java_lujj/article/details/126951083