Kafka



Kafka 설치 in Ubuntu

apt  install  openjdk-8-jdk

cd  /work/download
wget  http://mirror.navercorp.com/apache/kafka/2.3.0/kafka_2.12-2.3.0.tgz
tar  -xzf  kafka_2.12-2.3.0.tgz

cd  kafka_2.12-2.3.0
bin/zookeeper-server-start.sh  config/zookeeper.properties
bin/kafka-server-start.sh  config/server.properties
bin/kafka-topics.sh  --create  --bootstrap-server  localhost:9092  --replication-factor 1  --partitions 1  --topic  test

bin/kafka-topics.sh  --list  --bootstrap-server  localhost:9092
bin/kafka-console-producer.sh  --broker-list  localhost:9092  --topic  test
bin/kafka-console-consumer.sh  --bootstrap-server  localhost:9092  --topic  test  --from-beginning

참고 문헌

최종 수정일: 2022-10-24 19:17:28

이전글 :
다음글 :
상단 menu
arrow_back_ios
arrow_forward_ios