生产:
docker ps
docker exec -it xxxxxx /bin/bash
cd /opt/kafka
./bin/kafka-console-producer.sh --broker-list 127.0.0.1:9092 --topic testTopic --producer.config config/producer.properties
消费:
docker ps
docker exec -it xxxxxx /bin/bash
cd /opt/kafka
./bin/kafka-console-consumer.sh --bootstrap-server 127.0.0.1:9092 --topic testTopic --from-beginning --consumer.config config/consumer.properties
网友评论