赞
踩
1.启动kafka服务
启动zookeeper
bin/zookeeper-server-start.sh config/zookeeper.properties
启动kafka
bin/kafka-server-start.sh config/server.properties
2.创建一个主题
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
查看当前已创建的主题
bin/kafka-topics.sh --list --zookeeper localhost:2181
3.创建一个生产者,并发送一些消息
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test
This is a message
This is another message
4.创建一个消费者,并接受消息
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning
This is a message
This is another message
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。