Kafka - Security
You have this Kafka client config:
The client fails to authenticate. What is the most likely cause?
props.put("security.protocol", "SASL_PLAINTEXT");
props.put("sasl.mechanism", "PLAIN");
props.put("sasl.jaas.config", "org.apache.kafka.common.security.plain.PlainLoginModule required username=\"admin\" password=\"admin123\";");The client fails to authenticate. What is the most likely cause?
