1.启动zookeeper
2.启动卡夫卡
3.创建topic 名为file-image-topic
kafka-topics.bat -create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 3 --topic file-image-topic
4.在file-image-topic中写消息
kafka-console-producer.bat --broker-list localhost:9092 --topic file-image-topic
示例:
5.读取file-image-topic中的消息(需要另外打开一个cmd窗口)
kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic file-image-topic --from-beginning
示例:
6.显示kafka中已有的topic
kafka-topics.bat --list --bookstrap-server localhost:9092