KAFKA-5050 add ldap authentication support on PlainSaslServer#2833
KAFKA-5050 add ldap authentication support on PlainSaslServer#2833nihed wants to merge 2 commits into
Conversation
|
Refer to this link for build results (access rights to CI server needed): |
|
Refer to this link for build results (access rights to CI server needed): |
|
Refer to this link for build results (access rights to CI server needed): |
|
I think it will be better to do this on top of KIP-86 (PR #2022). A new callback handler can be defined for LDAP without changing |
|
Can I get the compiled files? thanks |
|
FAILURE |
|
SUCCESS |
|
FAILURE |
2 similar comments
|
FAILURE |
|
FAILURE |
|
This PR is being marked as stale since it has not had any activity in 90 days. If you If you are having difficulty finding a reviewer, please reach out on the [mailing list](https://kafka.apache.org/contact). If this PR is no longer valid or desired, please feel free to close it. If no activity occurs in the next 30 days, it will be automatically closed. |
|
This PR has been closed since it has not had any activity in 120 days. If you feel like this |
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.