【分布式秒杀系统02】windows环境下zookeeper单节点的安装和启动

mac2022-06-30  28

一.简介

ZooKeeper是一个分布式的,开放源码的分布式应用程序协调服务,是Hadoop和Hbase的重要组件。它是一个为分布式应用提供一致性服务的软件,提供的功能包括:配置维护、域名服务、分布式同步、组服务等。

二.下载

Apache官方下载,下载地址:https://www.apache.org/dyn/closer.cgi/zookeeper/

三.安装

1.将安装包解压到指定目录:E:\zookeeper-3.5.4-beta 2.进入zooKeeper的配置文件目录E:\zookeeper-3.5.4-beta\conf,修改zoo_sample.cfg 文件名为 zoo.cfg 3.编辑zoo.cfg文件,修改zooKeeper数据和日志储存位置,具体配置如下:

# 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 an acknowledgement syncLimit=5 # the directory where the snapshot is stored. # do not use /tmp for storage, /tmp here is just # example sakes. dataDir=E:\data\zookeeper\data dataLogDir=E:\data\zookeeper\log # the port at which the clients will connect clientPort=2181 # the maximum number of client connections. # increase this if you need to handle more clients #maxClientCnxns=60 # # Be sure to read the maintenance section of the # administrator guide before turning on autopurge. # # http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance # # The number of snapshots to retain in dataDir #autopurge.snapRetainCount=3 # Purge task interval in hours # Set to "0" to disable auto purge feature #autopurge.purgeInterval=1

四.启动

进入到bin目录,双击执行zkServer.cmd 运行cmd输入jps -l -v命令可以看到QuorumPeerMain的进程,这是ZooKeeper的进程,zookeeper启动成功! 参考文章:https://segmentfault.com/a/1190000014642400

最新回复(0)