To start the Kafka service:
bin/kafka-server-start.sh Config/server.properties &
To stop the Kafka service:
bin/kafka-server-stop.sh
Create topic:
bin/kafka-topics.sh--create--zookeeper hadoop002.local:2181,hadoop001.local:2181,hadoop003.local:2181-- Replication-factor 2--partitions 2--topic test2
Remove topic (requires server.properties to set delete.topic.enable=true otherwise just tag delete):
bin/kafka-topics.sh--delete--zookeeper hadoop002.local:2181,hadoop001.local:2181,hadoop003.local:2181--topic Test6
List all topic:
bin/kafka-topics.sh--list--zookeeper hadoop002.local:2181,hadoop001.local:2181,hadoop003.local:2181
List all the topic details:
bin/kafka-topics.sh--describe--zookeeper hadoop002.local:2181,hadoop001.local:2181,hadoop003.local:2181
Hadoop003.local:
bin/kafka-console-producer.sh--broker-list hadoop002.local:9092,hadoop001.local:9092,hadoop003.local:9092-- Topic test
Hadoop002.local:
bin/kafka-console-consumer.sh--zookeeper hadoop002.local:2181,hadoop001.local:2181,hadoop003.local:2181--topic Test--from-beginning
Kafka Manager Start command
Nohup bin/kafka-manager-dconfig.file=/opt/kafka-manager-1.2.3/conf/application.conf-dhttp.port=9090 &
Download Address: http://download.csdn.net/detail/xiao_jun_0820/8716139