kafka命令
Posted 且穷且独立
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kafka命令相关的知识,希望对你有一定的参考价值。
1.启动zookeeper
bin/zookeeper-server-start.sh &
2.启动kafka
nohup bin/kafka-server-start.sh config/server.properties &
3.创建topic
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
4.查看topic
bin/kafka-topics.sh --list --zookeeper localhost:2181 test
5.发送消息
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test This is a messageThis is another message
6.查看消息
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic test --from-beginning
以上是关于kafka命令的主要内容,如果未能解决你的问题,请参考以下文章