最近打算好好學習一下zookeeper,那么第一步就是要搭建一個環境。
單機版的比較簡單,這里就不介紹了。
集群版本的,看網上的教程也蠻簡單的,但是自己動起手來還是會遇到各種問題,這里做一下記錄。
成都創新互聯-專業網站定制、快速模板網站建設、高性價比靈臺網站開發、企業建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式靈臺網站制作公司更省心,省錢,快速模板網站建設找我們,業務覆蓋靈臺地區。費用合理售后完善,十余年實體公司更值得信賴。
1、3個阿里云服務器,其中2個ECS,1個輕量服務器。
2、zookeeper使用最新版本 https://archive.apache.org/dist/zookeeper/stable/apache-zookeeper-3.5.5-bin.tar.gz
3、3臺云主機的Java使用jdk1.8版本。
1、檢查各個主機的Java環境是否正常
2、下載最新版本zookeeper,并解壓,3臺機器最好采用統一的目錄,我采用的目錄
/enzi/zk/apache-zookeeper-3.5.5-bin
3、3個機器,分別創建zookeeper的數據目錄和日志目錄
/enzi/zk/data
/enzi/zk/log
4、進入程序目錄下,3個機器操作都一樣
/enzi/zk/apache-zookeeper-3.5.5-bin/conf
復制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.
# do not use /tmp for storage, /tmp here is just
# example sakes.
dataDir=/enzi/zk/data
dataLogDir=/enzi/zk/log
# the port at which the clients will connect
clientPort=2181
#admin.serverPort=8089
# 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.
#
# http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
#
# 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=ip1:2888:3888
server.2=ip2:2888:3888
server.3=ip3:2888:3888
quorumListenOnAllIPs=true
5、創建myid文件
分別在對應的data目錄下,為自己的服務指定myid,內容就是zoo.cfg里面server.后面的序號,分別是1,2,3,ip1機器下myid內容為1,依次類推。
6、依次啟動3個機器zookeeper服務
bin/zkServer.sh start
如果想看有沒有什么錯誤信息可以使用如下命令,在調試階段建議使用這個命令。
bin/zkServer.sh start-foreground
7、查看是否啟動成功
mode:follower,代表這個服務是follower節點。
這里server.1是leader節點。
8、使用客戶端進行連接,這里采用的windows的客戶端
zkCli.cmd -server ip1:2181,ip2:2181,ip3:2181
使用命令,創建臨時節點如下
注意:對于阿里云,因為防火墻或者ECS的安全策略來說,會導致集群之間的接口連接失敗。
1、輕量服務器來說需要把2181,2888,3888增加到防火墻上。
2、對于ESC需要把2181,2888,3888的安全規則,入口和出口都設置為允許。
分享文章:zookeeper(1)利用3個機器,搭建zk集群模式
轉載源于:http://vcdvsql.cn/article34/podjse.html
成都網站建設公司_創新互聯,為您提供商城網站、自適應網站、外貿網站建設、建站公司、用戶體驗、網站導航
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯