View Categories

Authenticating using LDAP

This article describes how to use LDAP to Authenticate users.

If you want to use LDAP to authenticate users you will need to configure uvuyo to use LDAP using the properties files. The following table lists the properties that need to be set to configure ldap

PropertyDefault ValueDescription
uvuyo.security.ldap.enabledfalseUse this property to switch on / off the ldap authentication. If set to true, the ldap authentication is switched on. If set to false the ldap authentication is switched to off
uvuyo.security.ldap.urlldap://localhost:10389The url to the ldap server
uvuyo.security.ldap.bind
DN=uid=admin,ou=users,dc=2yetis,dc=netThe DN used to bind to the ldap server. This DN is used to connect to the ldap server. It needs the appropriate rights so that it can query the server to find users and groups
uvuyo.security.ldap.credentialsadminThe credentials used to login to the ldap server.
uvuyo.security.ldap.userBaseDNdc=2yetis,dc=net
The base DN used to search for users in the dlap server. This property is used together with the user filter to identify users
uvuyo.security.ldap.userFilter(uid={0})The filter used to find the appropriate user on the ldap server. The {0} is replaces with the actual userid used while logging into uvuyo
uvuyo.security.ldap.usernameAttributecnThe attribute to use as the username when a user is found. The username will be displayed in the UI after login in
uvuyo.securrity.ldap.allowUsersThis attribute will set the users that are allowed to autheticate. If this property is empty all users found by the filter confugured above are allowed to connect to uvuyo

Nach oben