1、下载kafka
https://www.apache.org/dyn/closer.cgi?path=/kafka/1.1.0/kafka_2.11-1.1.0.tgz |
2、上传至linux下并解压
3、启动服务
3.1、启动zookeeper
(启动zk有两种方式,第一种是使用kafka自己带的一个zk。)
bin/zookeeper-server-start.sh config/zookeeper.properties &
另一种是使用其它的zookeeper,可以位于本机也可以位于其它地址。这种情况需要修改config下面的sercer.properties里面的zookeeper地址 。例如zookeeper.connect=192.168.52.128:2181
3.2启动kafka
bin/kafka-server-start.sh config/server.properties
4、创建topic
bin/kafka-topics.sh --create --zookeeper 192.168.52.128:2181(localhost:2181) --replication-factor 1 --partitions 1 --topic test
创建一个名为test的topic,只有一个副本,一个分区。
通过list命令查看刚刚创建的topic
bin/kafka-topics.sh -list -zookeeper 192.168.52.128:2181(localhost:2181)
5、启动producer并发送消息启动producer
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test
启动之后就可以发送消息了,例如:
6、启动customer
bin/kafka-console-consumer.sh --zookeeper 192.168.52.128:2181(localhost:2181) --topic test --from-beginning
启动consumer之后就可以在console中看到producer发送的消息了,例如:
来源:CSDN
作者:IT飞岳
链接:https://blog.csdn.net/qq_34409255/article/details/80392463