ZooKeeper 在windows的安装

时间:2022-06-01 12:51:46

写这篇随笔的原因是公司项目用到了dubbo框架,,需要安装zookeeper,故查询了一些文章,同时将安装zookeeper的步骤记录下来,感谢提供资料的博友,在文章最后具体感谢。

1、概述   

            ZooKeeper是Hadoop的正式子项目,它是一个针对大型分布式系统的可靠协调系统,提供的功能包括:配置维护、名字服务、分布式同步、组服务等。

ZooKeeper的目标就是封装好复杂易出错的关键服务,将简单易用的接口和性能高效、功能稳定的系统提供给用户。

2、安装与配置

        (1)下载: 在apache的官方网站提供了好多镜像下载地址,然后找到对应的免安装版本就行了。

(2)安装:将下载的包解压放在自己相放的地方,比如:D:\Program Files (x86)\zookeeper-3.4.8

(3)修改配置,路径是D:\Program Files (x86)\zookeeper-3.4.8\conf

a、conf下增加一个zoo.cfg

b、文件内容

                     # 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=D:\\data\\zookeeper

                  #日志位置

                  dataLogDir=D:\\logs\\zookeeper

                  # the port at which the clients willconnect  客户端连接的端口

                  clientPort=2181

(3)启动

启动命令在D:\Program Files (x86)\zookeeper-3.4.8\bin 中

这样zookeeper 算是安装成功了

需要感谢提供的参考文章



ZooKeeper 在windows的安装