1、创建主题(topic)
bin/kafka-topics.sh --create --zookeeper m6:2181 --replication-factor 1 --partitions 1 --topic test
2、查看主题
bin/kafka-topics.sh --list --zookeeper m6:2181
3、向主题发送消息(生产者)
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test
4、接收主题发送的消息(消费者)
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning