我正在使用以下命令启动代理并创建主题:
bin/kafka-server-start.sh config/server.properties & bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic read-singnals
在此之前,我开始动物饲养员:
bin/zookeeper-server-start.sh config/zookeer.properties
当我尝试列出所有可用的主题时,使用以下命令:
bin/kafka-topics.sh --list --zookeeper localhost:2181
我什么都没打印!有什么想法吗?
答案 0 :(得分:0)
我按照步骤(类似于提到的步骤)并在documentation link中提到。 我尝试了一个流浪汉CentoS最小实例(relativkreativ / centos-7-minimal)的步骤,我收到了预期的输出。 我甚至为该主题尝试了相同的名称(只是为了确定它是否不是导致问题的名称中的连字符)并且它按预期工作。
按照以下有关vagrant centos实例的步骤
sudo yum install java
wget http://a.mbbsindia.com/kafka/0.8.2.0/kafka_2.10-0.8.2.0.tgz
tar -xzf kafka_2.10-0.8.2.0.tgz
cd kafka_2.10-0.8.2.0
bin/zookeeper-server-start.sh config/zookeeper.properties &
bin/kafka-server-start.sh config/server.properties &
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic testme
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic testme2
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic testme2-test1
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic read-singnals
预期结果
[vagrant@localhost kafka_2.10-0.8.2.0]$ bin/kafka-topics.sh --list --zookeeper localhost:2181
read-singnals
testme
testme2
testme2-test1
如果您能够找到任何其他版本差异或者您是否能够解决问题,请告诉我