zookeeper linux版安裝

第一步 下載zookeeper

wget添加鏈接描述
第二步 解壓
tar -zxvf /這裏是目錄/zookeeper-3.3.6.tar.gz

第三步 進入到conf目錄
cd /這裏是目錄/zookeeper-3.3.6/conf

第四步 拷貝zoo_samle.cfg爲zoo.cfg
cp zoo_sample.cfg zoo.cfg

第五步 編輯zoo.cfg文件
vi 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.  
	dataDir=/usr/zookeeper/zookeeper-3.3.6  
	dataLogDir=/usr/zookeeper/zookeeper-3.3.6/log  
	# the port at which the clients will connect  
	clientPort=2181  
	#server.1=192.168.32.129:2888:3888  

六、設置環境變量
export ZOOKEEPER_INSTALL=/這裏是目錄/zookeeper-3.3.6
export PATH=PATH:PATH:ZOOKEEPER_INSTALL/bi

七、啓動 在bin 目錄下
./zkServer.sh start
JMX enabled by default
Using config: /opt/deploy/zookeeper-3.3.6/bin/…/conf/zoo.cfg
Starting zookeeper … STARTED

八、測試zookeeper
./zkCli.sh -server 192.168.11.128:2181

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章