前沿:最近公司作的項目用到了dubbo 和 zookeeper 因爲 每次測試的時候 我本地的服務就會註冊到測試機上,還得每次把測試機的服務中止掉,因此準備在本地搭建一個zookeeper。html
安裝過程java
2.1 http://mirrors.hust.edu.cn/apache/zookeeper/ 下載,個人版本是 3.3.6數據庫
2.2 解壓到 E:\zookeeper-3.3.6 apache
3.3 到目錄conf 下建立 zoo.cfg 文件,默認就是加載這個文件,文件內容 我直接copy 的sample裏面的windows
Java代碼 服務器
# The number of milliseconds of each tick 檢查心跳的時間 tickTime=2000 # The number of ticks that the initial # synchronization phase can take 初始化時,連接到服務器端的間隔次數,總時間10*2=20秒 initLimit=10 # The number of ticks that can pass between # sending a request and getting an acknowledgement ZK leader 和 follower 之間通信的次數,總時間 5*2=10秒 syncLimit=5 # the directory where the snapshot is stored. # do not use /tmp for storage, /tmp here is just # example sakes. # 存儲內存中數據庫快照的位置,若是不設置參數,更新事務日誌將被存儲到默認位置。 dataDir=E:\\zk\\tmp\\zookeeper # 錯誤日誌的存放位置 dataLogDir=E:\\zk\\logs\\zookeeper # the port at which the clients will connect ZK 服務器端的監聽端口 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. # # 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
上面的說明介紹:http://zookeeper.apache.org/doc/current/zookeeperStarted.htmlide
而後 cd 到bin 目錄下 執行zkServer.cmd 就啓動成功了。測試
注意:dataDir 和 dataLogDir 目錄不會自動建立,得手動建立才能啓動。ui
能夠用netstat -ano|findstr "2181" 看看是否OK。this
也能夠用JPS 查看啓動的JAVA 進程的狀況,會出現這樣
Java代碼
C:\windows\system32>jps 8068 10040 QuorumPeerMain // 這東西是zk的東西,源碼有介紹 10556 Jps
也能夠用自帶客戶端命令 : zkCli.cmd -server 127.0.0.1:2181
關於JPS的東西,能夠本身去JAVA_HOME\bin 目錄下去看,裏面不少命令。
未完待續