ERROR Error when sending message to topic

前端 未结 13 2265
借酒劲吻你
借酒劲吻你 2020-12-28 13:46

While producing message in kafka, i am getting the following error :

$ bin/kafka-console-producer.sh --broker-list localhost:9092 --topic nil_PF1_P1
hi
hello         


        
13条回答
  •  太阳男子
    2020-12-28 14:10

    Instead of changing server.properties include the address 0.0.0.0 in the code itself. Instead of

    /usr/bin/kafka-console-producer --broker-list Hostname:9092 --topic MyFirstTopic1
    

    use

    /usr/bin/kafka-console-producer --broker-list 0.0.0.0:9092 --topic MyFirstTopic1
    

提交回复
热议问题