ZooKeeper是Hadoop的正式子項目,它是一個針對大型分佈式系統的可靠協調系統,提供的功能包括:配置維護、名字服務、分佈式同步、組服務等。ZooKeeper的目標就是封裝好複雜易出錯的關鍵服務,將簡單易用的接口和性能高效、功能穩定的系統提供給用戶。html
在apache的官方網站提供了好多鏡像下載地址,而後找到對應的版本,目前最新的是3.3.6java
下載地址:web
http://mirrors.cnnic.cn/apache/zookeeper/zookeeper-3.3.6/zookeeper-3.3.6.tar.gzapache
Windows下安裝瀏覽器
把下載的zookeeper的文件解壓到指定目錄tomcat
D:\machine\zookeeper-3.3.6>app
修改conf下增長一個zoo.cfgwebapp
內容以下:分佈式
# The number of milliseconds of each tick 心跳間隔 毫秒每次oop
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
注:若是啓動有報錯提示cfg文件有錯誤,能夠用zoo_sample.cfg內內容替代也是能夠的
進入到bin目錄,而且啓動zkServer.cmd,這個腳本中會啓動一個Java進程
D:\machine\zookeeper-3.3.6>cd bin
D:\machine\zookeeper-3.3.6\bin>
D:\machine\zookeeper-3.3.6\bin >zkServer.cmd
啓動後jps能夠看到QuorumPeerMain的進程
D:\machine\zookeeper-3.3.6\bin >jps
啓動客戶端運行查看一下
D:\machine\zookeeper-3.3.6\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
若是有多個能夠以此類推
還須要 在對應的
/tmp/zookeeper/1,
/tmp/zookeeper/2,
/tmp/zookeeper/3
創建一個文本文件命名爲myid,內容就爲對應的zoo.cfg裏server.後數字
----------------------------------------------------------------------------------------------------------