最近比較有空,趕緊擠出時間來總結前段時間的知識。
zookeeper的集群搭建非常快捷方便,下面簡單說一下。
1
其他的機器的同樣地方也需要設定myid
# 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.
# 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.purgeinterval=1
server.1=192.168
.0.15:2888:3888
server.2=192.168
.0.14:2888:3888
server.3=192.168
.0.13:2888:3888
最下面的配置就是集群配置,
server.s=192.168.0.13:ssss:llll
上面的s表示就是機器ip對應的myid,ssss表示zookeeper集群內部資料同步時使用的埠可以自定義,llll表示集群內部選舉時通訊使用的埠,可以自定義。
4.每台機器都設定好後就,就可以啟動集群,在bin目錄下 ./zkserver.sh start
leader節點
follower節點
嘗試對192.168.0.15進行資料插入,建立乙個testnode
在192.168.0.13可以查詢到同樣資料
以上就是快速搭建乙個zookeeper集群方式
zookeeper集群搭建
接觸zookeeper集群已有很長很長一段時間了,zookeeper在專案中的使用相當的頻繁,如dubb服務 amq集群 大資料領域hadoop等。zookeeper的集群建立非常簡單,一直想寫一篇文章來對集群使用的介紹,但一直沒能抽出空,今天正好閒來無事,就重新實踐一遍來整理記錄,下文是基本的集群...
zookeeper集群搭建
zookeeper環境搭建需要保證奇數臺機器,以保證演算法能選舉出乙個leader。一 環境準備 datadir dir ticktime 2000 initlimit 5 synclimit 2 clientport 2181 server.0 192.168.1.100 2888 3888 se...
zookeeper集群搭建
1.準備工作 tomcat zookeeper 最少三個結點搭乙個集群,所以複製三份 2.搭建並配置三個zookeeper例項 cd usr local solr cloud zookeeper01 進zookeeper01目錄,mkdir data 該目錄下建立data資料夾,放置zookeepe...