配置

解压后,就可以看到配置文件,比如:kafka_2.13-3.2.3\config

配置数据位置:dataDir=E:\\TMP\\zookeeper

配置日志位置:log.dirs=E:\\TMP\\kafka-logs

启动

假设我们在项目的根目录:kafka_2.13-3.2.3\

zookeeper-server-start.bat ..\..\config\zookeeper.properties

kafka-server-start.bat ..\..\config\server.properties

kafka-topics.bat --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test

kafka-console-producer.bat --broker-list localhost:9092 --topic test

kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic test --from-beginning