当前位置 主页 > 服务器问题 > win服务器问题汇总 >

    windows系统搭建zookeeper服务器的教程

    栏目:win服务器问题汇总 时间:2019-11-15 01:08

    安装&配置

    在apache的官方网站提供了好多镜像下载地址,然后找到对应的版本

    下载地址:

    http://mirrors.cnnic.cn/apache/zookeeper/zookeeper-3.4.14/zookeeper-3.4.14.tar.gz

    Windows下安装

    把下载的zookeeper的文件解压到指定目录

    C:\ZK\zookeeper-3.4.14>

    修改conf下增加一个zoo.cfg

    内容如下:

    # The number of milliseconds of each tick 心跳间隔 毫秒每次
    tickTime=2000
    # The number of ticks that the initial
    # synchronization phase can take
    initLimit=10
    # The number of ticks that can pass between
    # sending a request and getting anacknowledgement
    syncLimit=5
    # the directory where the snapshot isstored. //镜像数据位置
    dataDir=C:\\ZK\\data\\zookeeper
    #日志位置
    dataLogDir=C:\\ZK\\logs\\zookeeper
    # the port at which the clients willconnect 客户端连接的端口
    clientPort=2181

    注:如果启动有报错提示cfg文件有错误,可以用zoo_sample.cfg内内容替代也是可以的

    进入到bin目录,并且启动zkServer.cmd,这个脚本中会启动一个java进程

    C:\ZK\zookeeper-3.4.14>cd bin

    C:\ZK\zookeeper-3.4.14\bin>

    C:\ZK\zookeeper-3.4.14\bin >zkServer.cmd 

    启动后jps可以看到QuorumPeerMain的进程

    C:\ZK\zookeeper-3.4.14\bin >jps

    启动客户端运行查看一下

    C:\ZK\zookeeper-3.4.14\bin>zkCli.cmd -server 127.0.0.1:2181

    这个时候zookeeper已经安装成功了,

    参考官方文档:

    http://zookeeper.apache.org/doc/trunk/zookeeperStarted.html

     参考单机模式、集群和伪集群的帖子

    http://sqcjy111.iteye.com/blog/1741320

    在 一台机器上通过伪集群运行时可以修改 zkServer.cmd 文件在里面加入

    set ZOOCFG=..\conf\zoo1.cfg  这行,另存为  zkServer-1.cmd

    如果有多个可以以此类推


    还需要 在对应的

    C:\\ZK\\data\\zookeeper\\1,

    C:\\ZK\\data\\zookeeper\\2,

    C:\\ZK\\data\\zookeeper\\3

     建立一个文本文件命名为myid,内容就为对应的zoo.cfg里server.后数字

     

    总结

    以上所述是小编给大家介绍的windows系统搭建zookeeper服务器的教程,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对IIS7站长之家网站的支持!
    如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!