Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 1.06 KB

kafka-commands.md

File metadata and controls

27 lines (23 loc) · 1.06 KB

Kafka Zookeeper

Command Description
bin/zookeeper-server-start.sh config/zookeeper.properties Starts zookeeper
bin/zookeeper-server-stop.sh config/zookeeper.properties Stops zookeeper

Kafka Server

Command Description
bin/kafka-server-start.sh config/server.properties Starts kafka server
bin/kafka-server-stop.sh config/server.properties Stops kafka server

Kafka Topic

Command Description
bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test Creates topic
bin/kafka-topics.sh --list --bootstrap-server localhost:9092 Lists topics

Kafka Producer

Command Description
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test Starts producer, ready to send messages

Kafka Consumer

Command Description
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning Starts consumer, ready to receive messages