所有機器操作都一樣!
注:zookeeper配置集群時 需把防火牆關掉 或者暴露配置檔案裡配置的埠,
並且在datadir目錄下要有myid檔案
wget
2 解壓
tar -zxvf zookeeper-3.4.10.tar.gz
3 修改配置檔案
複製配置檔案 zoo_sample.cfg 到zoo.cfg
cp zoo_sample.cfg zoo.cfg
vim zoo.cfg
#the number of milliseconds of each tickticktime=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=/home/log/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
##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.purgeinterv
server.
0=192.168.174.128:2888:3888
server.
1=192.168.174.129:2888:3888
4 在 datadir=/home/log/zookeeper 目錄下新建 myid 檔案
寫入乙個字元 0
儲存。5 啟動 ./zkserver.sh start
zookeeper jmx enabled by default
using config: /home/service/zookeeper-3.4.10/bin/../conf/zoo.cfg
starting zookeeper ... started
6 檢視啟動狀態 ./zkserver.sh status
zookeeper jmx enabled by default
using config: /home/service/zookeeper-3.4.10/bin/../conf/zoo.cfg
mode: leader
zookeeper命令
./zkserver.sh
start 啟動
start-foreground 有啟動過程的啟動
stop 停止
restart 重啟
status 檢視啟動狀態
1 Windows安裝和使用zookeeper
本文介紹的 zookeeper 是以 3.4.5 這個穩定版本為基礎,最新的版本可以通過官網來獲取,zookeeper 的安裝非常簡單,下面將從單機模式和集群模式兩個方面介紹 zookeeper 的windows安裝和配置.單機模式 單機安裝非常簡單,只要獲取到 zookeeper 的壓縮包並解壓到...
Zookeep簡單記錄下
一 概念 zookeeper 作為乙個分布式的服務框架,主要用來解決分布式集群中應用系統的一致性問題,它能提供基於類似於檔案系統的目錄節點樹方式的資料儲存,zookeeper 作用主要是用來維護和監控儲存的資料的狀態變化,通過監控這些資料狀態的變化,從而達到基於資料的集群管理。zookeeper集群...
linux的shell程式設計 zookeeper
zookeeper linux當中的shell是一門指令碼語言,所見即所得 shell程式設計一般指代shell指令碼的開發,不是指代shell核心的開發shell指令碼第一行約定俗稱 bin bash shell指令碼執行的兩種方式 第一種方式 sh hello.sh 或者 bash hello....