下載地址:http://kafka.apache.org/downloads http://mirror.bit.edu.cn/apache/kafka/2.3.0/kafka_2.12-2.3.0.tgzapache
zookeeper.properties修改dataDirbootstrap
dataDir=G:\zookeeper-3.5.5\data # the port at which the clients will connect clientPort=2181 # disable the per-ip limit on the number of connections since this is a non-production config maxClientCnxns=0
server.properties修改log.dirswindows
############################# Log Basics ############################# # A comma separated list of directories under which to store log files log.dirs=G:\kafka\logs
運行zookeeper命令this
zkserver
進入cd G:\kafka\bin\windowsspa
啓動服務:code
kafka-server-start.bat ../../config/server.properties
建立實例server
kafka-topics.bat --create --zookeeper localhost:2181 --repl ication-factor 1 --partitions 1 --topic testDemo
生產者blog
kafka-console-producer.bat --broker-list localhost:9092 --t opic testDemo
消費者ip
kafka-console-consumer.bat --bootstrap-server localhost:909 2 --topic testDemo --from-beginning
在生產者裏輸入內容,消費者就打印出相應內容get