執行 zookeeper 運行命令apache
D:\kafka_2.12-2.3.0\bin\windows\zookeeper-server-start.bat D:\kafka_2.12-2.3.0\config\zookeeper.properties
執行結果
bootstrap
默認端口號是 2181
windows
打開新的命令行,執行:命令行
D:\kafka_2.12-2.3.0\bin\windows\kafka-server-start.bat D:\kafka_2.12-2.3.0\config\server.properties
執行結果:code
建立一個名爲 topic_test
的主題,包含一個分區,只有一個副本server
D:\kafka_2.12-2.3.0\bin\windows\kafka-topics.bat --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic topic_test
D:\kafka_2.12-2.3.0\bin\windows\kafka-console-producer.bat --broker-list localhost:9092 --topic topic_test
D:\kafka_2.12-2.3.0\bin\windows\kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic topic_test --from-beginning