I am trying to connect to a Kafka server with SCRAM SHA 512 authentication with TLS set to false.
With an external client with below configuration, connection is successful but with ACE toolkit -Kafka nodes I am not able to achieve this.
security.protocol=SASL_PLAINTEXT
sasl.mechanism=SCRAM-SHA-512
sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required username="user" password="password";
I have tried to create kafka.properties with these configurations and put it in ADVANCED tab. Also, have everything defined in a policy.
I am getting the error:
org.apache.kafka.common.errors.UnsupportedSaslMechanismException: Clinet SASL mechanism 'PLAIN' not enabled in the server, enabled mechanisms are SCRAM SHA 512.
Have tried using SASL_SSL as well but no success.
Thanks.
------------------------------
Amrita Singh
------------------------------