Kafka - Security
In this Kafka client config snippet:
The client fails with a login error. What is the most probable cause?
props.put("security.protocol", "SASL_SSL");
props.put("sasl.mechanism", "GSSAPI");
props.put("sasl.jaas.config", "com.sun.security.auth.module.Krb5LoginModule required useKeyTab=true keyTab=\"/etc/kafka/kafka.keytab\" principal=\"kafka/host@EXAMPLE.COM\";");The client fails with a login error. What is the most probable cause?
