当前位置: 首页 > 工具软件 > kaf-cli > 使用案例 >

Kafka-

王凌
2023-12-01

Kafka 调试指令

  1. 启动kafka,进入Kafka安装目录
./bin/kafka-server-start.sh -daemon config/server.properties
  1. 停止Kafka
./bin/kafka-server-stop.sh
  1. 创建Topic
./bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1
  1. 查看已经创建的Topic信息
./bin/kafka-topics.sh --list --zookeeper loclahost:2181
  1. 发送消息
./bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test-topic
  1. 接收消息
./bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic topic01 --from-beginning
 类似资料: