标签:
Windows 7 安装Apache kafka_2.11-0.9.0.1
下载所需文件
Zookeeper: http://www.apache.org/dyn/closer.cgi/zookeeper/
Kafka :http://kafka.apache.org/downloads.html
安装Zookeeper
安装Kafka
打开CMD 到E:\soft\elk\zookeeper-3.4.8\这个路径下
输入bin\windows\kafka-server-start.bat config\server.properties
现在Kafka已经准备好并开始运行,可以创建主题来存储消息了
创建主题
输入
kafka-topics.bat --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test1
创建Producer及Consumer来测试服务器。
输入
kafka-console-producer.bat --broker-list localhost:9092 --topic test1
再打开一个cmd,输入
kafka-console-consumer.bat --zookeeper localhost:2181 --topic test1
在producer命令行中任意输入内容,回车;在其他consumer命令行中能看到相应消息
标签:
原文地址:http://www.cnblogs.com/liuyuhua/p/5329926.html