zookeeper是 apache 下hadoop 的乙個子專案,它主要是用來解決分布式應用中經常遇到的一些資料管理問題,如:統一命名服務、狀態同步服務、集群管理、分布式應用配置項的管理等。
config 下是配置,由於 預設的是 zoo.cfg 檔案,所以 將zoo_sample.cfg 改名,或者複製乙個副本重新命名為 zoo.cfg。
開啟配置檔案:
# 伺服器之間或者伺服器和客戶端之間,維持心跳的時間,也就是說,每隔這個時間傳送乙個心跳
ticktime=2000
# 初始化連線允許的最大心跳,時間=10* 2000
initlimit=10
# 這個配置項標識 leader 與 follower 之間傳送訊息,請求和應答時間長度,最長不能超過多少個 ticktime 的時間長度
synclimit=5
# 顧名思義就是 zookeeper 儲存資料的目錄,預設情況下,zookeeper 將寫資料的日誌檔案也儲存在這個目錄裡
datadir=c:\program files\zookeeper-3.4.14\data
# 這個埠就是客戶端連線 zookeeper 伺服器的埠,zookeeper 會監聽這個埠,接受客戶端的訪問請求。
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.
## ## 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
下一步修改 datadir = c:\program files\zookeeper-3.4.14\data
雙擊bin 目錄下的 zkserver.cmd
這就啟動成功了。
判斷是否成功
可以通過 netstat -ano 命令檢視是否有你配置的 clientport 埠號在監聽服務;
也可以雙擊 zkcli.cmd
沒有詳細的了解,只是安裝了下,為了下一步使用kafka準備,步驟很簡單,直接用了乙個網友的圖。
zookeeper簡單安裝
安裝zookeeper 1.必須安裝jdk,版本在1.6以上。2.安裝zookeeper最少三颱伺服器,不然檢測時還是會提示你少於3臺伺服器 4.在 usr local 下新建資料夾zookeeper,在這個資料夾解壓 5.修改conf檔案,修改檔案zoo.cfg,修改內容 the number o...
Zookeeper 安裝和配置
zookeeper的安裝和配置十分簡單,既可以配置成單機模式,也可以配置成集群模式.下面將分別進行介紹.bash ticktime 2000 clientport 4180 ticktime 2000 clientport 4180 引數說明 至此,zookeeper的單機模式已經配置好了.啟動se...
zookeeper配置以及安裝
leader隨機選舉 1 tar zxvf zookeeper 3.4.9.tar.gz c export servers cd servers ln s zookeeper 3.4.9 zookeeper mv zoo sample.cfg zoo.cfg 2 配置 集群中的follower伺服器...