1.启动zookeeper cmd,输入“zkServer“,运行Zookeeper(前提是配置系统设置)
2.启动kafka: .\bin\windows\kafka-server-start.bat .\config\server.properties
或bin\kafka-server-start.sh config\server.properties
3.创建主题:.\bin\windows\kafka-topics.bat --create --bootstrap-server localhost:9092
--replication-factor 1 --partitions 1 --topic test(2.8.0以上kafka适用)
4.创建生产者:.\bin\windows\kafka-console-producer.bat --broker-list localhost:9092 --topic test
5.创建消费者:.\bin\windows\kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic test --from-beginning
6.查看topic: .\bin\windows\kafka-topics.bat --describe --zookeeper localhost:2181 --topic