1. 程式人生 > >windows環境下zookeeper安裝和使用

windows環境下zookeeper安裝和使用

retain ID sync zookeepe hat net can which ble

一.簡介
zooKeeper是一個分布式的,開放源碼的分布式應用程序協調服務,是Google的Chubby一個開源的實現,是Hadoop和Hbase的重要組件。它是一個為分布式應用提供一致性服務的軟件,提供的功能包括:配置維護、域名服務、分布式同步、組服務等。
zooKeeper的目標就是封裝好復雜易出錯的關鍵服務,將簡單易用的接口和性能高效、功能穩定的系統提供給用戶。
zooKeeper包含一個簡單的原語集,提供Java和C的接口。
zooKeeper代碼版本中,提供了分布式獨享鎖、選舉、隊列的接口,代碼在zookeeper-3.4.8\src\recipes。其中分布鎖和隊列有Java和C兩個版本,選舉只有Java版本。

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

三.安裝
  解壓到指定目錄下D:\software\zookeeper-3.4.11
  修改zoo_sample.cfg 文件名(D:\soft\zookeeper-3.4.8\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 an acknowledgement
syncLimit=5
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just 
# example sakes.
dataDir=D:\\software\\zookeeper-3.4.11\\data
dataLogDir=D:\\software\\zookeeper-3.4.11\\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

配置文件簡單解析
  1.tickTime:這個時間是作為 zookeeper 服務器之間或客戶端與服務器之間維持心跳的時間間隔,也就是每個 tickTime 時間就會發送一個心跳。
  2.dataDir:顧名思義就是 zookeeper 保存數據的目錄,默認情況下,Zookeeper 將寫數據的日誌文件也保存在這個目錄裏。
  3.dataLogDir:顧名思義就是 zookeeper 保存日誌文件的目錄
  4.clientPort:這個端口就是客戶端連接 zookeeper 服務器的端口,Zookeeper 會監聽這個端口,接受客戶端的訪問請求。

四.啟動
  進入到bin目錄,並且啟動zkServer.cmd,這個腳本中會啟動一個java進程。

技術分享圖片

技術分享圖片

  啟動後jps可以看到QuorumPeerMain的進程。

技術分享圖片

  也可以啟動客戶端連接一下

技術分享圖片

  OK,安裝成功,很簡單。

參考文章:https://blog.csdn.net/tlk20071/article/details/52028945

windows環境下zookeeper安裝和使用