安裝配置Zookeeper

2021-10-24 08:44:59 字數 1976 閱讀 1501

安裝包鏈結

提取碼:f8n8

版本號:3.4.6

將安裝包拖入software目錄下,解壓到opt目錄下後重新命名為zk

配置環境變數

配置完成後soucre儲存配置

命令:source /etc/profile

將profile拷貝到另外兩台虛擬機器

命令:scp /etc/profile root@hadoop002:/etc/profile

進入zk目錄增加data目錄和logs目錄

命令:

ticktime=2000

# the number of ticks that the initial

#最大訪問數:不限制

maxclientcnxns=0

# synchronization phase can take

#初始化最小程序數:50

initlimit=50

# 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=/opt/zk/zkdata

#日誌目錄

datalogdir=/opt/zk/zklogs

# 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,配置三颱以上奇數臺可用主機名或ip,如果不配置集群則可忽略

server.1=主機名1:2888:3888

server.2=主機名2:2888:3888

server.3=主機名3:2888:3888

配置完成後,切換到opt目錄,拷貝zk資料夾到另外兩台虛擬機器,命令:scp -r zk root@hadoop002:$pwd

進入建立的zkdata目錄,新建myid檔案,輸入id,即配置zoo.cfg中每台機器對應的server號,如:server.1=hadoop01:2888:3888

vi /opt/zk/zkdata/myid
開啟zookeeper,檢視zookeeper狀態,關閉zookeeper

ZooKeeper安裝配置

zookeeper安裝方式有三種,單機模式和集群模式以及偽集群模式。單機模式 zookeeper只執行在一台伺服器上,適合測試環境 偽集群模式 就是在一台物理機上執行多個zookeeper 例項 集群模式 多台物理機上執行多個例項,zookeeper執行於乙個集群上,適合生產環境,這個計算機集群被稱...

zookeeper 安裝配置指南

1 在namenode機器下,配置zookeeper,先解壓安裝包,使用命令 2.進入zookeeper的配置目錄,首先把zoo sample.cfg重新命名一下,可以重新複製一遍,使用命令 3.gedit zoo.cfg 新增如下內容 4.把zookeeper分別遠端拷貝datanode1,dat...

Zookeeper安裝配置詳解

在分布式系統中,zookeeper已經是必備元件了,其重要性,可見一斑,想從頭了解zookeeper?可以讓您更了解zookeeper,今天主要為大家介紹如何在ubuntu下如何安裝和配置zookeeper。sudo wget 2.解壓zookeeper 3.4.10.tar.gz sudo tar...