ERROR Error when sending message to topic

前端 未结 13 2274
借酒劲吻你
借酒劲吻你 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:08

    Had this issue: Using Hortonworks HDP 2.5. Kerberisation enabled

    Fixed by providing the correct security protocol and ports. Example commands:

    ./kafka-console-producer.sh --broker-list sand01.intranet:6667, san02.intranet:6667, san03.intranet:6667--topic test--security-protocol PLAINTEXTSASL
    
    
    ./kafka-console-consumer.sh --zookeeper sand01:2181 --topic test--from-beginning --security-protocol PLAINTEXTSASL
    

提交回复
热议问题