kafka-topics.bat --list --引导服务器本地主机:9092未返回列表

3df52oht  于 2022-11-21  发布在  Apache
关注(0)|答案(1)|浏览(108)

kafka-topics.bat --list --bootstrap-server localhost:9092 is not returning anything
kafka-topics.bat --list --引导服务器本地主机:9092未显示任何内容
上面的命令是要显示主题列表,但是它没有返回任何内容。

6rqinv9w

6rqinv9w1#

只有 两 件 事

  • localhost : 9092 上 的 集群 没有 任何 主题
  • 存在 阻止 您 列出 主题 的 ACL 。

您 是否 尝试 过 先 创建 一 个 主题 ? 您 可以 使用

kafka-topics.sh --bootstrap-server localhost:9092 --topic first_topic --create --partitions 3 --replication-factor 1

中 的 每 一 个

相关问题