- 簡介
ZooKeeper是Hadoop的正式子專案,它是一個針對大型分散式系統的可靠協調系統,提供的功能包括:配置維護、名字服務、分散式同步、組服務等。ZooKeeper的目標就是封裝好複雜易出錯的關鍵服務,將簡單易用的介面和效能高效、功能穩定的系統提供給使用者。
- 安裝和配置
在apache的官方網站提供了好多映象下載地址,然後找到對應的版本,目前最新的是3.3.6
下載地址:
Windows下安裝
把下載的zookeeper的檔案解壓到指定目錄
D:\ant\zookeeper-3.3.6>
修改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=D:\data\zookeeper
日誌位置
dataLogDir=D:\logs\zookeeper
the port at which the clients willconnect 客戶端連線的埠
clientPort=2181
注:如果啟動有報錯提示cfg檔案有錯誤,可以用zoo_sample.cfg內內容替代也是可以的
進入到bin目錄,並且啟動zkServer.cmd,這個指令碼中會啟動一個java程式
也可以雙擊zkServer.cmd啟動即可: