zookeeper 설치 및 구성

1725 단어 zookeeper
zookeeper 버전: zookeeper-3.4.5-cdh5.0.0-beta-1tar.gz
서버:
      10.95.3.100  master1
      10.95.3.103  slave1
      10.95.3.104  slave1
1. 압축해제 zookeeper-3.4.5-cdh5.0.0-beta-1tar.gz,zookeeper/conf 디렉터리에 들어가서zoo_ 복사sample.cfg(cpzoo_sample.cfgzoo.cfg),zoo로 변경.cfg.
2. 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=/dp/zookeeper_dataDir
# the port at which the clients will connect
clientPort=2181
server.1=master1:2888:3888
server.2=slave1:2888:3888
server.3=slave2:2888:3888
#
# 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

3. 수정된 zookeeper 설치 파일 scp를 다른 두 기계에 설치
4, 기계마다/dp/zookeeper_ 만들기dataDir 파일, 이것은 zoo입니다.cfg dataDir의 설정으로 이 폴더 아래에 myid 파일을 만들고 파일 내용은 기계마다 각각 123
5、vi ~/.bashrc 설정 zookeeper 환경 변수
   export ZOOKEEPER_HOME=/dp/zookeeper
   path=$ZOOKEEPER_HOME/bin
6. 각 시스템에서 zkServer를 실행합니다.shstart 시작 zookeeper

좋은 웹페이지 즐겨찾기