溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Linux下如何安裝ZooKeeper

發(fā)布時(shí)間:2022-02-06 08:26:49 來源:億速云 閱讀:149 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要講解了“Linux下如何安裝ZooKeeper”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Linux下如何安裝ZooKeeper”吧!

ZooKeeper 是一個(gè)針對大型分布式系統(tǒng)的可靠協(xié)調(diào)系統(tǒng),提供的功能包括:配置維護(hù)、名字服務(wù)、分布式同步、組服務(wù)。

Linux下如何安裝ZooKeeper

Linux安裝Zookeeper具體步驟:

一、Zookeeper下載

 
 
 [root@localhost 下載]# wget http://mirror.bit.edu.cn/apache/zookeeper/zookeeper-3.4.10/zookeeper-3.4.10.tar.gz  
 
   
 
 已發(fā)出 HTTP 請求,正在等待回應(yīng)... 200 OK  
 
 長度:11833706 (11M) [application/octet-stream]  
 
 正在保存至: “zookeeper-3.4.10.tar.gz”  
 
   
 
 100%[======================================================================================================================================================================================>] 11,833,706   171KB/s 用時(shí) 68s      
 
   
 
 - 已保存 “zookeeper-3.4.10.tar.gz” [11833706/11833706])

二、解壓

 [root@localhost deploy]# tar -zxvf zookeeper-3.4.10.tar.gz

三、進(jìn)入到conf目錄修改zoo_samle.cfg為zoo.cfg

 [root@localhost conf]# mv zoo_sample.cfg zoo.cfg

四、編輯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.  
 
 dataDir=../data
 
 dataLogDir=../log  
 
 # the port at which the clients will connect  
 
 clientPort=2181  
 
 server.1=192.168.147.128:3888

五、啟動(dòng)

進(jìn)入bin目錄,執(zhí)行:./zkServer.sh start

感謝各位的閱讀,以上就是“Linux下如何安裝ZooKeeper”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Linux下如何安裝ZooKeeper這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI