Kafka 설치
- Kafka 설치 전 해야 할 것들
1. 계정 만들기
useradd kafka
passwd kafka
2. 다운
wget "https://dlcdn.apache.org/kafka/2.5.0/kafka_2.13-2.5.0.tgz" --no-check-certificate
3. 압축 해제
tar xzvf kafka_2.13-2.5.0.tgz
4. 심볼릭 링크
ln -s kafka_2.13-2.5.0 kafka
5. 카프카 저장 디렉토리 생성
mkdir data01
mkdir data02
6. kafka 환경 설정
vi /home/kafka/kafka/config/server.properties
############################# Server Basics #############################
broker.id=0 # 각 노드별로 1,2,3 지정
...
############################# Log Basics #############################
log.dirs=/home/kafka/data01,/home/kafka/data02
...
############################# Zookeeper #############################
zookeeper.connect=zoo-1:2181,zoo-2:2181,zoo-3:2181/kafka_znode # 마지막에 zookeeper 데이터 저장 노드를 지정해준다.
7. kafka 실행 (각 서버마다 카프카를 실행)
/home/kafka/kafka/bin/kafka-server-start.sh -daemon /home/kafka/kafka/config/server.properties