GitHub user nihed opened a pull request: https://github.com/apache/kafka/pull/2833
KAFKA-5050 add ldap authentication support on PlainSaslServer This feature will provide a way to add ldap authentication on PlainSaslServer. Our Jaas Server configuration will be : KafkaServer { org.apache.kafka.common.security.plain.PlainLdapLoginModule REQUIRED username="cent" password="redhat" source="ldap" ldap_user_template="uid={0},ou=People,dc=srv,dc=world" ldap_url="ldap://192.168.15.247:389"; }; I tested my code with existing tests and everything looks good. I will create another ticket later to add new unit tests. You can merge this pull request into a Git repository by running: $ git pull https://github.com/nihed/kafka trunk Alternatively you can review and apply these changes as the patch at: https://github.com/apache/kafka/pull/2833.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #2833 ---- commit f0075473c7e198f8754a63b8a54d3875c6dbb1db Author: nihed <nihe...@gmail.com> Date: 2017-04-10T16:24:42Z KAFKA-5050 add ldap authentication support on PlainSaslServer ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---