Kafka - Security
You have configured your Kafka client as follows:
The client fails to authenticate. What is the most likely cause?
props.put("security.protocol", "SASL_SSL");
props.put("sasl.mechanism", "SCRAM-SHA-256");
props.put("sasl.jaas.config", "org.apache.kafka.common.security.scram.ScramLoginModule required username=\"user1\" password=\"wrongpass\";");The client fails to authenticate. What is the most likely cause?
