• 启动和关闭zookeeper
bin/zookeeper-server-start.sh -daemon config/zookeeper.properties
bin/zookeeper-server-stop.sh 
  • 启动和关闭kafka
bin/kafka-server-start.sh -daemon config/server.properties
bin/kafka-server-stop.sh

  • centos7上查看kafka是否成功启动的命令(显示的有进程号代表成功)
输入:jps

在这里插入图片描述


  • 查看kafka topic列表,使用–list参数
bin/kafka-topics.sh --list --zookeeper localhost:2181
bin/kafka-topics.sh --zookeeper 127.0.0.1:2181 --list

在这里插入图片描述


  • 查看kafka特定topic的详情,使用–topic与–describe参数
bin/kafka-topics.sh --zookeeper 127.0.0.1:2181 --topic test --describe

在这里插入图片描述


  • 创建一个测试的Topic
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test

  • 开启生产者
kafka-console-producer.sh --broker-list localhost:9092 --topic test

  • 开启消费者
kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning
  • 删除topic
 ./kafka-topics.sh  --delete --zookeeper localhost:2181 --topic test

Logo

Kafka开源项目指南提供详尽教程,助开发者掌握其架构、配置和使用,实现高效数据流管理和实时处理。它高性能、可扩展,适合日志收集和实时数据处理,通过持久化保障数据安全,是企业大数据生态系统的核心。

更多推荐