1.创建topic
# replication-factor 副本
# partitions 分区
./kafka-topics.sh --zookeeper localhost:2181 --create --topic test --replication-factor 3 --partitions 2
2.发送消息
./kafka-console-producer.sh --broker-list localhost:9092 --topic test
3.消费消息
# 加了--from-beginning 从头消费所有的消息
./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning
#不加--from-beginning 从最新的一条消息开始消费
./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test
4.删除一个topic
./kafka-topics.sh --zookeeper localhost:2181 --delete --topic test
5.查看所有的topic
./kafka-topics.sh --list --zookeeper localhost:9092
6.显示所有消费者
./kafka-consumer-groups.sh --bootstrap-server localhost:9092 --list
7.查看消费者组的详细信息
./kafka-consuemr-groups.sh --bootstrap-server ip:port --group 消费组名称 --describe