zookeeper 군집 구축 설정
환경: windows 8.1, zookeeper 3.4.5
지금 해 야 할 일 은 단기 위조 집단 이다.
# 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=/tmp/zookeeper
# the port at which the clients will connect
clientPort=2181
#
# 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
수정 후:
# 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=E:/zookeepercluster/servcer001/data
dataLogDir=E:/zookeepercluster/servcer001/logs
# the port at which the clients will connect
clientPort=2181
#
# 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
server.1=localhost:8881:7771
server.2=localhost:8882:7772
#server.3=192.168.192.7:8883:7773
#server.4=192.168.192.7:8884:7774
#server.5=192.168.192.7:8885:7775
주로 아래 에 몇 개의 서버 의 ip 주 소 를 추가 합 니 다. 제 것 은 모두 이 컴퓨터 이기 때문에 저 는 모두 같은 주소 입 니 다.
매개 변수 설명:
3. data 아래 에 my id 파일 을 만 듭 니 다. 내용 은 1 입 니 다.
이 내용 에 대응 하 는 것 은 이 zookeeper 의 순서 입 니 다. 첫 번 째 zookeeper 는 1 이 고 두 번 째 zookeeper 는 2 입 니 다. 선후 순서 가 없 으 면 중복 할 수 없습니다.
이것 은 server. x 의 x 와 대응 하 는 것 이 좋 습 니 다.
프로필 이력서 server 02, server 03, server 04 노드 디 렉 터 리 구 조 를 다음 과 같이 수정 합 니 다.
├── server001
│ ├── data
│ ├── logs
│ └── zookeeper-3.4.5
├── server002
│ ├── data
│ ├── logs
│ └── zookeeper-3.4.5
├── server003
│ ├── data
│ ├── logs
│ └── zookeeper-3.4.5
├── server004
│ ├── data
│ ├── logs
│ └── zookeeper-3.4.5
└── server005
├── data
├── logs
└── zookeeper-3.4.5
이렇게 하면 windows 아래 의 단기 위조 군집 을 설정 할 수 있 습 니 다.
다음은 시동 입 니 다.
bin 에 들 어가 서 더 블 클릭: zkServer. cmd
이 오 류 를 보고 한 것 은 아직 노드 가 작 동 하지 않 았 기 때문에 모두 작 동 하면 잘못 보고 하지 않 을 것 이다.
zkServer. cmd status 를 실행 하면 노드 의 역할 을 볼 수 있 습 니 다. leader 인지 follower 인지.
이렇게 가짜 집단 이 성공 할 수 있 으 니 잘못된 부분 이 있 으 면 지적 해 주시 기 바 랍 니 다. ORZ.
참고 글:
http://www.cnblogs.com/haippy/archive/2012/07/19/2599989.html
http://zookeeper.apache.org/
http://zookeeper.apache.org/doc/current/zookeeperStarted.html
http://zookeeper.apache.org/doc/current/index.html
http://www.ibm.com/developerworks/cn/opensource/os-cn-zookeeper/
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ZooKeeper 서버의 예는 하나뿐입니다.-- Start zookeeper-3.4.6/conf 디렉터리에 zoo_sample.cfg의 파일입니다. 이 파일을zoo로 개명합니다.cfg, 파일 이름은zoo만 가능합니다.cfg, ZooKeeper의 스크립트가 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.