当前位置:   article > 正文

记录:kafka在windows环境下的搭建和使用_kanka window

kanka window
  1. 下载地址:https://www.apache.org/dyn/closer.cgi?path=/kafka/2.2.0/kafka_2.11-2.2.0.tgz

  2. 新版本kafka内置了 zookeeper ,所有下载后解压后,不用配置。

  3. 进入解压后的主目录,地址上输入cmd回车,开启黑窗口1:
    bin\windows\zookeeper-server-start.bat config\zookeeper.properties(启动zookeeper)
    在这里插入图片描述

    开启黑窗口2:
    bin\windows\kafka-server-start.bat config\server.properties(启动kafka)
    在这里插入图片描述

    开启黑窗口3(创建topic topic =test ):
    bin\windows\kafka-topics.bat --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test

    (查看创建的topic):
    bin\windows\kafka-topics.bat --list --zookeeper localhost:2181

    (启动producer):
    bin\windows\kafka-console-producer.bat --broker-list localhost:9092 --topic test
    在这里插入图片描述

    开启黑窗口4(启动消费者 ):
    bin\windows\kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic test --from-beginning
    在这里插入图片描述
    参考:https://blog.csdn.net/w_x_s_h_h/article/details/89296088

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号