在windows初装kafka
2018-12-20 本文已影响0人
小狼在IT
1.下载kafka:
http://kafka.apache.org/downloads
2.解压
image.png
3.运行
CMD到这里:
image.png
1).启动zookeeper
.\bin\windows\zookeeper-server-start.bat .\config\zookeeper.properties
执行后不关闭
2).启动kafka
.\bin\windows\kafka-server-start.bat .\config\server.properties
执行后不关闭
3).创建主题
.\bin\windows\kafka-topics.bat --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test0811
执行后可关闭
最好,就可以用起来了:
运行两个CMD,一个跑生产者,一个跑消费者:
生产者
.\bin\windows\kafka-console-producer.bat --broker-list localhost:9092 --topic test0811
消费者
.\bin\windows\kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic test0811 --from-beginning
在右边的生产者输入内容,左边的消费者就能显示出来。