kafka报advertised.listeners listener names must be equal to or a subset of the ones defined in listeners.

啊啊 发表于: 2021-09-28   最后更新时间: 2021-09-28 19:21:18   1,988 游览

我使用kafka 3.0.0的KRaft模式,安装kafka集群,报:

advertised.listeners listener names must be equal to or a subset of the ones defined in listeners. Found PLAINTEXT1. The valid options based on the current configuration are PLAINTEXT

错误详情:

[2021-09-28 10:49:01,849] INFO Registered kafka:type=kafka.Log4jController MBean (kafka.utils.Log4jControllerRegistration$)
[2021-09-28 10:49:02,284] INFO Setting -D jdk.tls.rejectClientInitiatedRenegotiation=true to disable client-initiated TLS renegotiation (org.apache.zookeeper.common.X509Util)
[2021-09-28 10:49:02,360] ERROR Exiting Kafka due to fatal exception (kafka.Kafka$)
java.lang.IllegalArgumentException: requirement failed: advertised.listeners listener names must be equal to or a subset of the ones defined in listeners. Found PLAINTEXT1. The valid options based on the current configuration are PLAINTEXT
    at scala.Predef$.require(Predef.scala:337)
    at kafka.server.KafkaConfig.validateValues(KafkaConfig.scala:1956)
    at kafka.server.KafkaConfig.<init>(KafkaConfig.scala:1897)
    at kafka.server.KafkaConfig.<init>(KafkaConfig.scala:1394)
    at kafka.Kafka$.buildServer(Kafka.scala:67)
    at kafka.Kafka$.main(Kafka.scala:87)
    at kafka.Kafka.main(Kafka.scala)

我的server.properties配置如下:

listeners=PLAINTEXT://172.21.0.1:9092
advertised.listeners=PLAINTEXT1://172.21.0.1:9091
listener.security.protocol.map=PLAINTEXT1:PLAINTEXT,PLAINTEXT:PLAINTEXT

请问我该如何解决?

发表于 2021-09-28
添加评论

参数值必须为listeners中定义的某个listener或者对应name的listener在listeners中的定义使用了0.0.0.0作为host,在advertised.listeners中可以指定某个网卡ip。

所以,你需要改成

listeners=PLAINTEXT://172.21.0.1:9092,PLAINTEXT1://172.21.0.1:9091
advertised.listeners=PLAINTEXT1://172.21.0.1:9091
listener.security.protocol.map=PLAINTEXT1:PLAINTEXT,PLAINTEXT:PLAINTEXT
你的答案

查看kafka相关的其他问题或提一个您自己的问题