I am trying to set the correct values for LDAP properties of a SonarQube Server (5.6.6 LTS). I am having difficulty finding a resource that explains the list of possible values for these properties, and understand which one to use in which scenario? I am referring to https://docs.sonarqube.org/display/PLUG/LDAP+Plugin For example, Here what are all the possible values for There are several other properties like Is there a guide available which describes ALL ldap properties and ALL their possible values? I tried searching on LDAP.com, openldap.org but couldnt find relevant answers. |
# LDAP configuration
# General Configuration
sonar.security.realm=LDAP
ldap.url=ldap://<put your ldap server name>
ldap.bindDn=<copy from your LDAP server the ldap bindDN string>
ldap.bindPassword=<myUserPassword>
# User Configuratio
ldap.user.baseDn=<copy from your LDAP server the user bindDN string>
ldap.user.request=(&(objectClass=user)(sAMAccountName={login}))
ldap.user.realNameAttribute=cn
ldap.user.emailAttribute=mail# LDAP configuration
# General Configuration
sonar.security.realm=LDAP
ldap.url=ldap://west.company.com
ldap.bindDn=CN=guest,OU=Misc,OU=WESTAREA,OU=40-User Accounts,DC=west,DC=company,DC=com
ldap.bindPassword=gu3st
# User Configuration
ldap.user.baseDn=OU=Individual,OU=WESTAREA,OU=40-User Accounts,DC=west,DC=company,DC=com
ldap.user.request=(&(objectClass=user)(sAMAccountName={login}))
ldap.user.realNameAttribute=cn
ldap.user.emailAttribute=mail