zookeeper安裝和使用 windows環境
簡介
ZooKeeper是一個分散式的,開放原始碼的分散式應用程式協調服務,是Google的Chubby一個開源的實現,是Hadoop和Hbase的重要元件。它是一個為分散式應用提供一致性服務的軟體,提供的功能包括:配置維護、域名服務、分散式同步、組服務等。
ZooKeeper的目標就是封裝好複雜易出錯的關鍵服務,將簡單易用的介面和效能高效、功能穩定的系統提供給使用者。
ZooKeeper包含一個簡單的原語集,提供Java和C的介面。
ZooKeeper程式碼版本中,提供了分散式獨享鎖、選舉、佇列的介面,程式碼在zookeeper-3.4.8\src\recipes。其中分佈鎖和佇列有Java和C兩個版本,選舉只有Java版本。
ZooKeeper的目標就是封裝好複雜易出錯的關鍵服務,將簡單易用的介面和效能高效、功能穩定的系統提供給使用者。
ZooKeeper包含一個簡單的原語集,提供Java和C的介面。
ZooKeeper程式碼版本中,提供了分散式獨享鎖、選舉、佇列的介面,程式碼在zookeeper-3.4.8\src\recipes。其中分佈鎖和佇列有Java和C兩個版本,選舉只有Java版本。
下載
Apache官方最新版本為:3.4.8
安裝
解壓到指定目錄下 D:\soft\zookeeper-3.4.8
修改zoo_sample.cfg 檔名(D:\soft\zookeeper-3.4.8\conf) 為 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=D:\\zookeeper\\data
- dataLogDir=D:\\zookeeper\\log
- # 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.
- #
- # 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
配置檔案簡單解析
1、tickTime:這個時間是作為 Zookeeper 伺服器之間或客戶端與伺服器之間維持心跳的時間間隔,也就是每個 tickTime 時間就會傳送一個心跳。2、dataDir:顧名思義就是 Zookeeper 儲存資料的目錄,預設情況下,Zookeeper 將寫資料的日誌檔案也儲存在這個目錄裡。
3、dataLogDir:顧名思義就是 Zookeeper 儲存日誌檔案的目錄
4、clientPort:這個埠就是客戶端連線 Zookeeper 伺服器的埠,Zookeeper 會監聽這個埠,接受客戶端的訪問請求。
啟動
進入到bin目錄,並且啟動zkServer.cmd,這個指令碼中會啟動一個java程式
啟動後jps可以看到QuorumPeerMain的程式
也可以啟動客戶端連線一下
OK,安裝成功,很簡單
相關文章
- Windows 環境下 Python 環境安裝WindowsPython
- Windows環境安裝ScrapyWindows
- Windows 環境安裝LdapWindowsLDA
- Windows環境下安裝LinuxWindowsLinux
- Windows環境下安裝NexusWindows
- Windows 環境下安裝 RedisWindowsRedis
- Windows 環境下安裝 LaravelWindowsLaravel
- Windows環境下安裝RabbitMQWindowsMQ
- Windows單機配置Zookeeper環境Windows
- [Windows環境]nvm工具的介紹和安裝Windows
- windows環境安裝nc(netcat)命令Windows
- windows環境安裝mysql-8.0.3WindowsMySql
- Windows安裝Python開發環境WindowsPython開發環境
- ZooKeeper 系列(二)—— Zookeeper單機環境和叢集環境搭建
- Ubuntu16環境安裝和使用NFSUbuntuNFS
- Linux 使用Yum安裝Go和配置環境LinuxGo
- HMMer在Windows環境下的安裝HMMWindows
- CPP編譯器安裝(Windows環境)編譯Windows
- [Zookeeper-01]什麼是zookeeper?& Linux / Windows Zookeeper安裝和部署(單點)LinuxWindows
- windows環境配置:同時安裝Python2.7和Python3.6開發環境WindowsPython開發環境
- Java安裝和環境配置Java
- (轉)Windows下安裝Docker, GitBash環境配置WindowsDockerGit
- Windows環境下Python3.7安裝TensorflowWindowsPython
- Anaconda(conda)在windows安裝與環境配置Windows
- Windows 環境安裝 Horizon 報錯解決Windows
- windows java8的環境的安裝WindowsJava
- jenkins簡單安裝及配置(Windows環境JenkinsWindows
- python中虛擬環境virtualenvwrapper的安裝和使用PythonAPP
- Expo 環境配置和安裝指南
- QT Creator配置環境和安裝QT
- MacOS Flutter環境配置和安裝MacFlutter
- JDK環境解析,安裝和目的JDK
- kafka和zookeeper安裝Kafka
- 效能測試工具JMeter的安裝及環境配置--Windows和LinuxJMeterWindowsLinux
- Windows下安裝java jdk和tomcat執行環境簡單整理WindowsJavaJDKTomcat
- spaCy (1)安裝和測試程式碼的執行 windows環境Windows
- Linux & Windows 環境下 RabbitMQ 安裝與基本配置LinuxWindowsMQ
- Linux & Windows 環境下 Redis 安裝與基本配置LinuxWindowsRedis