启动 创建topic ./kafka-topics.sh --create --zookeeper dip005:2181,dip006:2181,dip007 --replication-factor 1 --partitions 1 --topic test2 ./kafka-topics.sh --describe --zookeeper dip005:2181 --topic test2 ./kafka-console-producer.sh --broker -list dip006:6667,dip007:6667 --topic test2 查看topic ./kafka-topics.sh --list --zookeeper dip005:2181 生产消息 ./kafka-console-producer.sh --broker-list dip005:9092 --topic test2 消费消息 ./kafka-console-consumer.sh --bootstrap-server dip005:9092 --from-beginning --topic test2