因爲1月份須要處理各種年終事情,未能寫一篇博客,深(cai)表(guai)慚愧,從如今開始好好寫做,爭取完成今年50篇的目標。
zookeeper是apache hadoop的子項目,是一個開源的分佈式應用協調服務,能夠用來完成統一命名服務、狀態同步服務、集羣管理、分佈式應用配置項的管理等工做。html
能夠在zookeeper官網找一個最快的鏡像下載,http://zookeeper.apache.org/r...。apache
@iZ23ow0rbyyZ:~$ wget http://mirror.bit.edu.cn/apache/zookeeper/zookeeper-3.4.11/zookeeper-3.4.11.tar.gz --2018-02-05 21:28:58-- http://mirror.bit.edu.cn/apache/zookeeper/zookeeper-3.4.11/zookeeper-3.4.11.tar.gz Resolving mirror.bit.edu.cn (mirror.bit.edu.cn)... 202.204.80.77, 2001:da8:204:2001:250:56ff:fea1:22 Connecting to mirror.bit.edu.cn (mirror.bit.edu.cn)|202.204.80.77|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 36668066 (35M) [application/octet-stream] Saving to: ‘zookeeper-3.4.11.tar.gz’ 100%[=======================================================================================================================================================================>] 36,668,066 1.68MB/s in 21s 2018-02-05 21:29:19 (1.68 MB/s) - ‘zookeeper-3.4.11.tar.gz’ saved [36668066/36668066]
tar -zxvf zookeeper-3.4.11.tar.gz zookeeper-3.4.11
zookeeper的配置的文件,在其根目錄的conf文件夾中,默認有個zoo_sample.cfg配置文件,需求將其改成zoo.cfg文件才能正常使用。服務器
cd zookeeper-3.4.11/conf/ cp zoo_sample.cfg zoo.cfg vi zoo.cfg
能夠看到zookeeper的配置文件以下:app
# 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=/tmp/zookeeper # 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 # 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
tickTime:這個時間是做爲Zookeeper 服務器之間或客戶端與服務器之間心跳的時間間隔,也就是每一個 tickTime 時間就會發送一個心跳。分佈式
dataDir:顧名思義就是Zookeeper 保存數據的目錄,在未設置dataLogDir的狀況下,Zookeeper 將寫數據的日誌文件也保存在這個目錄裏。oop
dataLogDir:顧名思義就是Zookeeper 保存日誌文件的目錄。this
clientPort:這個端口就是客戶端鏈接Zookeeper 服務器的端口,Zookeeper 會監聽這個端口,接受客戶端的訪問請求。.net
若是是集羣模式還須要一下的配置:日誌
initLimit:這個配置項是用來配置Zookeeper 接受客戶端(這裏所說的客戶端不是用戶鏈接 Zookeeper 服務器的客戶端,而是 Zookeeper 服務器集羣中鏈接到 Leader 的 Follower 服務器)初始化鏈接時最長能忍受多少個心跳時間間隔數。當已經超過 10 個心跳的時間(也就是 tickTime)長度後 Zookeeper 服務器尚未收到客戶端的返回信息,那麼代表這個客戶端鏈接失敗。總的時間長度就是 5*2000=10 秒。code
syncLimit:這個配置項標識Leader 與 Follower 之間發送消息,請求和應答時間長度,最長不能超過多少個 tickTime 的時間長度,總的時間長度就是 2*2000=4 秒。
server.A=B:C:D:其中 A 是一個數字,表示這個是第幾號服務器;B 是這個服務器的 ip 地址;C 表示的是這個服務器與集羣中的 Leader 服務器交換信息的端口;D 表示的是萬一集羣中的 Leader 服務器掛了,須要一個端口來從新進行選舉,選出一個新的 Leader,而這個端口就是用來執行選舉時服務器相互通訊的端口。若是是僞集羣的配置方式,因爲 B 都是同樣,因此不一樣的 Zookeeper 實例通訊端口號不能同樣,因此要給它們分配不一樣的端口號。
wwk@iZ23ow0rbyyZ:~/zookeeper-3.4.11/bin$ ./zkServer.sh ZooKeeper JMX enabled by default Using config: /home/wwk/zookeeper-3.4.11/bin/../conf/zoo.cfg Starting zookeeper ... STARTED
啓動zookeeper服務後,能夠鏈接使用zkCli.sh鏈接服務
wwk@iZ23ow0rbyyZ:~/zookeeper-3.4.11/bin$ ./zkCli.sh
好了關於zookeeper的安裝配置說到這裏,能夠說zookeeper的安裝仍是很簡單的,下一次再講講zookeeper的詳細運用。
參考文章:
http://blog.csdn.net/clj198606061111/article/details/21887219