Kafka Consumer: No entry found for connection

后端 未结 6 2403
甜味超标
甜味超标 2021-02-05 12:24

I am trying to check the kafka consumer by consuming the data from a topic on a remote Kafka cluster. I am getting the following error when I use the kafka-console-consume

6条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-05 13:14

    It seems the Kafka cluster listener property is not configured in server.properties.

    In the remote kafka cluster, this property should be uncommented with the proper host name.

    listeners=PLAINTEXT://0.0.0.0:9092
    

提交回复
热议问题