kafka 常用命令总结

guicaizhou 2020-06-12

1.查看某个主题下面的消息

bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic web_douyin_author --from-beginning

2.查看所有主题

bin/kafka-topics.sh --list --zookeeper localhost:2181

3.删除 某个主题

 ./bin/kafka-topics.sh --delete --topic web_douyin_author --zookeeper localhost:2181

4.启动kafak

nohup bin/kafka-server-start.sh config/server.properties  1>/dev/null 2>&1 &

相关推荐