Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add LDAP service user info #8385

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/src/main/sphinx/security/ldap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@ Authorization using Trino LDAP service user
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Trino server can use dedicated LDAP service user for doing user group membership queries.
You can use this configuration to support multiple domains.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How?


In such case Trino will first issue a group membership query for a Trino user that needs
to be authenticated. A user distinguished name will be extracted from a group membership
query result. Trino will then validate user password by creating LDAP context with
Expand All @@ -182,7 +184,8 @@ Property Description
======================================================= ======================================================
``ldap.bind-dn`` Bind distinguished name used by Trino when issuing
group membership queries.
Example: ``CN=admin,OU=CITY_OU,OU=STATE_OU,DC=domain``
Example values: ``CN=admin,OU=CITY_OU,OU=STATE_OU,DC=domain``
or ``[email protected]``
``ldap.bind-password`` Bind password used by Trino when issuing group
membership queries.
Example: ``password1234``
Expand Down