--- /dev/null
+---
+title: HTTP Header
+url: /instance-administration/authentication/http-header/
+---
+
+You can delegate user authentication to third-party systems (proxies/servers) using HTTP Header Authentication. See `SSO AUTHENTICATION` section within `sonar.properties` file.
+
+When this feature is activated, SonarQube expects that the authentication is handled prior any query reaching the server.
+The tool that handles the authentication should:
+
+* intercept calls to the SonarQube server
+* take care of the authentication
+* update the HTTP request header with the relevant SonarQube user information
+* re-route the request to SonarQube with the appropriate header information
+
+![HTTP Header Authentication flow](/images/http-header-authentication.png)
+
+All the parameters required to activate and configure this feature are available in SonarQube server configuration file (in _$SONARQUBE-HOME/conf/sonar.properties_).
+
+Using Http header authentication is an easy way integrate your SonarQube deployment with an in-house SSO implementation.
\ No newline at end of file
--- /dev/null
+---
+title: LDAP
+url: /instance-administration/authentication/ldap/
+---
+
+You can configure SonarQube authentication and authorization to an LDAP server (including LDAP Service of Active Directory) by configuring the correct values in _$SONARQUBE-HOME/conf/sonar.properties_.
+
+The main features are:
+
+* Password checking against the external authentication engine.
+* Automatic synchronization of usernames and emails.
+* Automatic synchronization of relationships between users and groups (authorization).
+* Ability to authenticate against both the external and the internal authentication systems. There is an automatic fallback on SonarQube internal system if the LDAP server is down.
+* During the first authentication trial, if the user's password is correct, the SonarQube database is automatically populated with the new user. Each time a user logs into SonarQube, the username, the email and the groups this user belongs to that are refreshed in the SonarQube database. You can choose to have group membership synchronized as well, but this is not the default.
+
+
+ | Apache DS | OpenLDAP | Open DS | Active Directory
+----|-----------|----------|---------|-----------------
+Anonymous | ![](/images/check.svg) |![](/images/check.svg) |![](/images/check.svg) |
+Simple|![](/images/check.svg)|![](/images/check.svg)|![](/images/check.svg)|![](/images/check.svg)
+LDAPS|![](/images/check.svg)|![](/images/check.svg)| |![](/images/check.svg)
+DIGEST-MD5|![](/images/check.svg)| |![](/images/check.svg)|![](/images/check.svg)
+CRAM-MD5|![](/images/check.svg)| |![](/images/check.svg)|![](/images/check.svg)
+GSSAPI|![](/images/check.svg)| | |
+![](/images/check.svg) = successfully tested
+
+### Setup
+1. Configure LDAP by editing _$SONARQUBE-HOME/conf/sonar.properties_ (see table below)
+2. Restart the SonarQube server and check the log file for:
+```
+INFO org.sonar.INFO Security realm: LDAP ...
+INFO o.s.p.l.LdapContextFactory Test LDAP connection: OK
+```
+1. Log into SonarQube
+1. On logout users will be presented a login page (_/sessions/login_), where they can choose to login as technical user or a domain user by passing appropriate credentials
+
+From SonarScanners, we recommend using [local technical users](/instance-administration/security/) for authentication against SonarQube Server.
+
+**General Configuration**
+
+Property|Description|Default value|Required|Example
+---|---|---|---|---
+`sonar.security.realm`|Set this to `LDAP` authenticate first against the external sytem. If the external system is not reachable or if the user is not defined in the external system, authentication will be performed against SonarQube's internal database.| none |Yes|`LDAP` (only possible value)
+`sonar.authenticator.downcase`|Set to true when connecting to a LDAP server using a case-insensitive setup.|`false`|No
+`ldap.url`|URL of the LDAP server. If you are using ldaps, you should install the server certificate into the Java truststore.| none |Yes|`ldap://localhost:10389`
+`ldap.bindDn`|The username of an LDAP user to connect (or bind) with. Leave this blank for anonymous access to the LDAP directory.|none|No|`cn=sonar,ou=users,o=mycompany`
+`ldap.bindPassword`|The password of the user to connect with. Leave this blank for anonymous access to the LDAP directory.|none|No|`secret`
+`ldap.authentication`|Possible values: `simple`, `CRAM-MD5`, `DIGEST-MD5`, `GSSAPI`. See [the tutorial on authentication mechanisms](http://java.sun.com/products/jndi/tutorial/ldap/security/auth.html)|`simple`|No
+`ldap.realm`|See [Digest-MD5 Authentication](http://java.sun.com/products/jndi/tutorial/ldap/security/digest.html), [CRAM-MD5 Authentication](http://java.sun.com/products/jndi/tutorial/ldap/security/crammd5.html)| none|No|example.org
+`ldap.contextFactoryClass`|Context factory class.|`com.sun.jndi.ldap.LdapCtxFactory`|No
+`ldap.StartTLS`|Enable use of `StartTLS`|`false`|No
+`ldap.followReferrals`|Follow referrals or not. See [Referrals in the JNDI](http://docs.oracle.com/javase/jndi/tutorial/ldap/referral/jndi.html)|`true`
+
+**User Mapping**
+
+Property|Description|Default value|Required|Example for Active Directory
+---|---|---|---|---
+`ldap.user.baseDn`|Distinguished Name (DN) of the root node in LDAP from which to search for users.|None|Yes|`cn=users,dc=example,dc=org`
+`ldap.user.request`|LDAP user request.|`(&(objectClass=inetOrgPerson)(uid={login}))`|No|`(&(objectClass=user)(sAMAccountName={login}))`
+`ldap.user.realNameAttribute`|Attribute in LDAP defining the user’s real name.|`cn`|No|
+`ldap.user.emailAttribute`|Attribute in LDAP defining the user’s email.|`mail`|No|
+
+**Group Mapping**
+Only groups (not roles) and static groups (not dynamic groups) are supported. Click [here](http://identitycontrol.blogspot.fr/2007/07/static-vs-dynamic-ldap-groups.html) for more information.
+
+For the delegation of authorization, [groups must be first defined in SonarQube](/instance-administration/security/). Then, the following properties must be defined to allow SonarQube to automatically synchronize the relationships between users and groups.
+
+Property|Description|Default value|Required|Example for Active Directory
+---|---|---|---|---
+`ldap.group.baseDn`|Distinguished Name (DN) of the root node in LDAP from which to search for groups.|none|No|`cn=groups,dc=example,dc=org`
+`ldap.group.request`|LDAP group request.|`(&(objectClass=groupOfUniqueNames)(uniqueMember={dn}))`|No|`(&(objectClass=group)(member={dn}))`
+`ldap.group.idAttribute`|Property used to specifiy the attribute to be used for returning the list of user groups in the compatibility mode.|`cn`|No|`sAMAccountName`
+
+### Sample Configuration
+```
+# LDAP configuration
+# General Configuration
+sonar.security.realm=LDAP
+ldap.url=ldap://myserver.mycompany.com
+ldap.bindDn=my_bind_dn
+ldap.bindPassword=my_bind_password
+
+# User Configuration
+ldap.user.baseDn=ou=Users,dc=mycompany,dc=com
+ldap.user.request=(&(objectClass=inetOrgPerson)(uid={login}))
+ldap.user.realNameAttribute=cn
+ldap.user.emailAttribute=mail
+
+# Group Configuration
+ldap.group.baseDn=ou=Groups,dc=sonarsource,dc=com
+ldap.group.request=(&(objectClass=posixGroup)(memberUid={uid}))
+```
+
+## Advanced LDAP Topics
+### Authentication Methods
+* **`Anonymous`** - Used when only read-only access to non-protected entries and attributes is needed when binding to the LDAP server.
+* **`Simple`** Simple authentication is not recommended for production deployments not using the ldaps secure protocol since it sends a cleartext password over the network.
+* **`CRAM-MD5`** - The Challenge-Response Authentication Method (CRAM) based on the HMAC-MD5 MAC algorithm ([RFC 2195](http://tools.ietf.org/html/rfc2195)).
+* **`DIGEST-MD5`** - This is an improvement on the CRAM-MD5 authentication method ([RFC 2831](http://www.ietf.org/rfc/rfc2831.txt)).
+* **`GSSAPI`** - GSS-API is Generic Security Service API ([RFC 2744](http://www.ietf.org/rfc/rfc2744.txt)). One of the most popular security services available for GSS-API is the Kerberos v5, used in Microsoft's Windows 2000 platform.
+
+For a full discussion of LDAP authentication approaches, see [RFC 2829](http://www.ietf.org/rfc/rfc2829.txt) and [RFC 2251](http://www.ietf.org/rfc/rfc2251.txt).
+
+### Multiple Servers
+To configure multiple servers:
+```
+# List the different servers
+ldap.servers=server1,server2
+
+# Configure server1
+ldap.server1.url=ldap://server1:1389
+ldap.server1.user.baseDn=dc=dept1,dc=com
+...
+
+# Configure server2
+ldap.server2.url=ldap://server2:1389
+ldap.server2.user.baseDn=dc=dept2,dc=com
+...
+```
+
+Authentication will be tried on each server, in the order they are listed in the configurations, until one succeeds. User/Group mapping will be performed against the first server on which the user is found.
+
+Note that all the LDAP servers must be available while (re)starting the SonarQube server.
+
+### Migrate users to a new authentication method
+If you are changing your delegated authentication method and migrating existing users from your previous authentication method, you can use the `api/users/update_identity_provider` web API to update your users' identity provider.
+
+### Troubleshooting
+* Detailed connection logs (and potential error codes received from LDAP server) are output to SonarQube's _$SONARQUBE_HOME/logs/web.log_, when logging is in `DEBUG` mode.
+
+* Time out when running SonarQube analysis using LDAP
+Java parameters are documented here: http://docs.oracle.com/javase/jndi/tutorial/ldap/connect/config.html. Such parameters can be set in `sonar.web.javaAdditionalOpts` in _$SONARQUBE-HOME/conf/sonar.properties_.
\ No newline at end of file
--- /dev/null
+---
+title: Overview
+url: /instance-administration/authentication/overview/
+---
+
+SonarQube comes with an onboard user database, as well as the ability to delegate authentication via HTTP Headers, GitHub Authentication, GitLab Authentication, Bitbucket Cloud Authentication, SAML, or LDAP. Each method offers user identity management, group synchronization/mapping, and authentication.
+
+## Group Mapping
+When using group mapping, the following caveats apply regardless of which delegated authentication method is used:
+* membership in synchronized groups will override any membership locally configured in SonarQube _at each login_
+* membership in a group is synched only if a group with the same name exists in SonarQube
+* membership in the default group `sonar-users` remains (this is a built-in group) even if the group does not exist in the identity provider
+
+[[warning]]
+|When group mapping is configured, the delegated authentication source becomes the only place to manage group membership, and the user's groups are re-fetched with each log in.
+
+## GitHub, GitLab, and Bitbucket Cloud Authentication
+You can delegate authentication to GitHub, GitLab, or Bitbucket Cloud. See the corresponding DevOps Platform integration page for more information:
+- [GitHub Enterprise and GitHub.com](/analysis/github-integration/)
+- [GitLab Self-Managed and GitLab.com](/analysis/gitlab-integration/)
+- [Bitbucket Cloud](/analysis/bitbucket-cloud-integration/)
+
+## Revoking tokens for deactivated users
+When SonarQube authentication is delegated to an external identity provider, deactivating a user on the identity provider side does not remove any tokens associated with the user on the SonarQube side. We recommend deactivating the user in SonarQube at **Administration > Security > Users** by selecting **Deactivate** from the ![Settings drop-down](/images/gear.png) drop-down menu to ensure tokens associated with that user can no longer be used.
--- /dev/null
+---
+title: SAML
+url: /instance-administration/authentication/saml/
+---
+
+You can delegate authentication to a SAML 2.0 Identity Provider using SAML Authentication.
+
+### Example: Using Keycloak as a SAML Identity Provider
+The following example may be useful if you're using Keycloak as a SAML Identity Provider. If you're not using Keycloak, your settings are likely to be different.
+
+[[collapse]]
+| ## In the Keycloak server, create a new SAML client
+| Create a new client
+|
+| 1. **Client ID**: Something like "sonarqube", it must not contain whitespace.
+| 1. **Client Protocol**: *saml*
+| 1. **Client SAML Endpoint**: Can be left empty
+|
+| Configure the new client
+|
+| 1. Under *Settings*
+| 1. **Client Signature Required:** ON only if the signature of the requests will be active on the SonarQube SAML configuration.
+| 1. **Encrypt Assertions**: ON if the responses from the IdP have to be encrypted.
+| 1. **Valid Redirect URIs**: "<Your SonarQube URL>/oauth2/callback/saml" (e.g., https://sonarqube.mycompany.com/oauth2/callback/saml).
+| 1. Under *Keys*
+| 1. (Optional) **Signing Key**: Add the service provider private key and the certificate if the signature of the requests is enabled on the SonarQube side (Keycloak generated keys can be used). This private key will have to be provided in PKCS8 format in SonarQube.
+| 1. (Optional) **Encryption Key**: Add the service provider certificate if you want to activate the encryption of Keycloak responses. If request signature is used, you must use the same certificate for the encryption.
+| 1. In **Client Scopes > Default Client Scopes**, remove "role_list" from "Assigned Default Client Scopes" (to prevent the error `com.onelogin.saml2.exception.ValidationError: Found an Attribute element with duplicated Name` during authentication)
+| 1. Under *Mappers*, create a mapper for each user attribute:
+| 1. Create a mapper for the login:
+| 1. **Name**: "Login"
+| 1. **Mapper Type**: *User Property*
+| 1. **Property**: "Username" (note that the login should not contain any special characters other than `.-_@` to meet SonarQube restrictions)
+| 1. **SAML Attribute Name**: "login"
+| 1. Create a mapper for the name:
+| 1. **Name**: "Name"
+| 1. **Mapper Type**: *User Property*
+| 1. **Property**: "Username" (it can also be another attribute you would previously have specified for the users)
+| 1. **SAML Attribute Name**: "name"
+| 1. (Optional) Create a mapper for the email:
+| 1. **Name**: "Email"
+| 1. **Mapper Type**: *User Property*
+| 1. **Property**: "Email"
+| 1. **SAML Attribute Name**: "email"
+| 1. (Optional) Create a mapper for the groups (if you rely on a list of roles defined in "Roles" of the Realm , not in "Roles" of the client):
+| 1. **Name**: "Groups"
+| 1. **Mapper Type**: *Role list*
+| 1. **Role Attribute Name**: "groups"
+| 1. **Single Role Attribute**: *ON*
+| 1. If you rely on a list of groups defined in "Groups":
+| 1. **Name**: "Groups"
+| 1. **Mapper Type**: *Group list*
+| 1. **Role Attribute Name**: "groups"
+| 1. **Single Role Attribute**: *ON*
+| 1. **Full Group Path**: *OFF*
+| 1. In **Realm Settings > General > Endpoints**, click on "SAML 2.0 Identify Provider Metadata" to obtain the XML configuration file from Keycloak.
+
+[[collapse]]
+| ## In SonarQube, Configure SAML authentication
+| Go to **[Administration > Configuration > General Settings > Security > SAML](/#sonarqube-admin#/admin/settings?category=security)**
+| * **Enabled**: *true*
+| * **Application ID**: The value of the "Client ID" you set in Keycloak (for example "sonarqube")
+| * **Provider ID**: The value of the `EntityDescriptor > entityID` attribute in the XML configuration file (e.g., "http://keycloak:8080/auth/realms/sonarqube")
+| * **SAML login url**: The value of `SingleSignOnService > Location` attribute in the XML configuration file (e.g., "http://keycloak:8080/auth/realms/sonarqube/protocol/saml")
+| * **Identity provider certificate**: The value you get from **Realm Settings > Keys > RS256**; click on the *Certificate* button
+| * **SAML user login attribute**: "login" (or whatever you configured above when doing the mapping)
+| * **SAML user name attribute**: "name" (or whatever you configured above when doing the mapping)
+| * (Optional) **SAML user email attribute**: "email" (or whatever you configured above when doing the mapping)
+| * (Optional) **SAML group attribute** "groups" (or whatever you configured above when doing the mapping)
+| * **Sign requests**: Set to true to activate the signature of the SAML requests. It needs both the service provider private key and certificate to be set.
+| * **Service provider private key**: The service provider private key shared with the identity provider. This key is required for both request signature and response encryption, which can be activated individually. The key should be provided for SonarQube in PKCS8 format without password protection.
+| * **Service provider certificate**: The service provider certificate shared with the identity provider in order to activate the requests signature.
+|
+| You can find [here](https://manpages.ubuntu.com/manpages/focal/man1/pkcs8.1ssl.html) some instructions to convert different key formats.
+|
+| In the login form, the new button "Log in with SAML" allows users to connect with their SAML account.
+
+### SAML and reverse proxy configuration
+When using SAML, make sure your reverse proxy is properly configured. See [Operating the Server](/setup/operate-server/) for more information.
\ No newline at end of file
+++ /dev/null
----
-title: Delegating Authentication
-url: /instance-administration/delegated-auth/
----
-
-SonarQube comes with an onboard user database, as well as the ability to delegate authentication via HTTP Headers, GitHub Authentication, GitLab Authentication, SAML, or LDAP. Each method offers user identity management, group synchronization/mapping, and authentication.
-
-## Group Mapping
-When using group mapping, the following caveats apply regardless of which delegated authentication method is used:
-* membership in synchronized groups will override any membership locally configured in SonarQube _at each login_
-* membership in a group is synched only if a group with the same name exists in SonarQube
-* membership in the default group `sonar-users` remains (this is a built-in group) even if the group does not exist in the identity provider
-
-[[warning]]
-|When group mapping is configured, the delegated authentication source becomes the only place to manage group membership, and the user's groups are re-fetched with each log in.
-
-## HTTP Header Authentication
-You can delegate user authentication to third-party systems (proxies/servers) using HTTP Header Authentication. See `SSO AUTHENTICATION` section within `sonar.properties` file.
-
-When this feature is activated, SonarQube expects that the authentication is handled prior any query reaching the server.
-The tool that handles the authentication should:
-
-* intercept calls to the SonarQube server
-* take care of the authentication
-* update the HTTP request header with the relevant SonarQube user information
-* re-route the request to SonarQube with the appropriate header information
-
-![HTTP Header Authentication flow](/images/http-header-authentication.png)
-
-All the parameters required to activate and configure this feature are available in SonarQube server configuration file (in _$SONARQUBE-HOME/conf/sonar.properties_).
-
-Using Http header authentication is an easy way integrate your SonarQube deployment with an in-house SSO implementation.
-
-## GitHub, GitLab, and Bitbucket Cloud Authentication
-You can delegate authentication to GitHub, GitLab, or Bitbucket Cloud. See the corresponding DevOps Platform integration page for more information:
-- [GitHub Enterprise and GitHub.com](/analysis/github-integration/)
-- [GitLab Self-Managed and GitLab.com](/analysis/gitlab-integration/)
-- [Bitbucket Cloud](/analysis/bitbucket-cloud-integration/)
-
-## SAML Authentication
-You can delegate authentication to a SAML 2.0 Identity Provider using SAML Authentication.
-
-### Example: Using Keycloak as a SAML Identity Provider
-The following example may be useful if you're using Keycloak as a SAML Identity Provider. If you're not using Keycloak, your settings are likely to be different.
-
-[[collapse]]
-| ## In the Keycloak server, create a new SAML client
-| Create a new client
-|
-| 1. **Client ID**: Something like "sonarqube", it must not contain whitespace.
-| 1. **Client Protocol**: *saml*
-| 1. **Client SAML Endpoint**: Can be left empty
-|
-| Configure the new client
-|
-| 1. Under *Settings*
-| 1. **Client Signature Required:** ON only if the signature of the requests will be active on the SonarQube SAML configuration.
-| 1. **Encrypt Assertions**: ON if the responses from the IdP have to be encrypted.
-| 1. **Valid Redirect URIs**: "<Your SonarQube URL>/oauth2/callback/saml" (e.g., https://sonarqube.mycompany.com/oauth2/callback/saml).
-| 1. Under *Keys*
-| 1. (Optional) **Signing Key**: Add the service provider private key and the certificate if the signature of the requests is enabled on the SonarQube side (Keycloak generated keys can be used). This private key will have to be provided in PKCS8 format in SonarQube.
-| 1. (Optional) **Encryption Key**: Add the service provider certificate if you want to activate the encryption of Keycloak responses. If request signature is used, you must use the same certificate for the encryption.
-| 1. In **Client Scopes > Default Client Scopes**, remove "role_list" from "Assigned Default Client Scopes" (to prevent the error `com.onelogin.saml2.exception.ValidationError: Found an Attribute element with duplicated Name` during authentication)
-| 1. Under *Mappers*, create a mapper for each user attribute:
-| 1. Create a mapper for the login:
-| 1. **Name**: "Login"
-| 1. **Mapper Type**: *User Property*
-| 1. **Property**: "Username" (note that the login should not contain any special characters other than `.-_@` to meet SonarQube restrictions)
-| 1. **SAML Attribute Name**: "login"
-| 1. Create a mapper for the name:
-| 1. **Name**: "Name"
-| 1. **Mapper Type**: *User Property*
-| 1. **Property**: "Username" (it can also be another attribute you would previously have specified for the users)
-| 1. **SAML Attribute Name**: "name"
-| 1. (Optional) Create a mapper for the email:
-| 1. **Name**: "Email"
-| 1. **Mapper Type**: *User Property*
-| 1. **Property**: "Email"
-| 1. **SAML Attribute Name**: "email"
-| 1. (Optional) Create a mapper for the groups (if you rely on a list of roles defined in "Roles" of the Realm , not in "Roles" of the client):
-| 1. **Name**: "Groups"
-| 1. **Mapper Type**: *Role list*
-| 1. **Role Attribute Name**: "groups"
-| 1. **Single Role Attribute**: *ON*
-| 1. If you rely on a list of groups defined in "Groups":
-| 1. **Name**: "Groups"
-| 1. **Mapper Type**: *Group list*
-| 1. **Role Attribute Name**: "groups"
-| 1. **Single Role Attribute**: *ON*
-| 1. **Full Group Path**: *OFF*
-| 1. In **Realm Settings > General > Endpoints**, click on "SAML 2.0 Identify Provider Metadata" to obtain the XML configuration file from Keycloak.
-
-[[collapse]]
-| ## In SonarQube, Configure SAML authentication
-| Go to **[Administration > Configuration > General Settings > Security > SAML](/#sonarqube-admin#/admin/settings?category=security)**
-| * **Enabled**: *true*
-| * **Application ID**: The value of the "Client ID" you set in Keycloak (for example "sonarqube")
-| * **Provider ID**: The value of the `EntityDescriptor > entityID` attribute in the XML configuration file (e.g., "http://keycloak:8080/auth/realms/sonarqube")
-| * **SAML login url**: The value of `SingleSignOnService > Location` attribute in the XML configuration file (e.g., "http://keycloak:8080/auth/realms/sonarqube/protocol/saml")
-| * **Identity provider certificate**: The value you get from **Realm Settings > Keys > RS256**; click on the *Certificate* button
-| * **SAML user login attribute**: "login" (or whatever you configured above when doing the mapping)
-| * **SAML user name attribute**: "name" (or whatever you configured above when doing the mapping)
-| * (Optional) **SAML user email attribute**: "email" (or whatever you configured above when doing the mapping)
-| * (Optional) **SAML group attribute** "groups" (or whatever you configured above when doing the mapping)
-| * **Sign requests**: Set to true to activate the signature of the SAML requests. It needs both the service provider private key and certificate to be set.
-| * **Service provider private key**: The service provider private key shared with the identity provider. This key is required for both request signature and response encryption, which can be activated individually. The key should be provided for SonarQube in PKCS8 format without password protection.
-| * **Service provider certificate**: The service provider certificate shared with the identity provider in order to activate the requests signature.
-|
-| You can find [here](https://manpages.ubuntu.com/manpages/focal/man1/pkcs8.1ssl.html) some instructions to convert different key formats.
-|
-| In the login form, the new button "Log in with SAML" allows users to connect with their SAML account.
-
-### SAML and reverse proxy configuration
-When using SAML, make sure your reverse proxy is properly configured. See [Operating the Server](/setup/operate-server/) for more information.
-
-## LDAP Authentication
-You can configure SonarQube authentication and authorization to an LDAP server (including LDAP Service of Active Directory) by configuring the correct values in _$SONARQUBE-HOME/conf/sonar.properties_.
-
-The main features are:
-
-* Password checking against the external authentication engine.
-* Automatic synchronization of usernames and emails.
-* Automatic synchronization of relationships between users and groups (authorization).
-* Ability to authenticate against both the external and the internal authentication systems. There is an automatic fallback on SonarQube internal system if the LDAP server is down.
-* During the first authentication trial, if the user's password is correct, the SonarQube database is automatically populated with the new user. Each time a user logs into SonarQube, the username, the email and the groups this user belongs to that are refreshed in the SonarQube database. You can choose to have group membership synchronized as well, but this is not the default.
-
-
- | Apache DS | OpenLDAP | Open DS | Active Directory
-----|-----------|----------|---------|-----------------
-Anonymous | ![](/images/check.svg) |![](/images/check.svg) |![](/images/check.svg) |
-Simple|![](/images/check.svg)|![](/images/check.svg)|![](/images/check.svg)|![](/images/check.svg)
-LDAPS|![](/images/check.svg)|![](/images/check.svg)| |![](/images/check.svg)
-DIGEST-MD5|![](/images/check.svg)| |![](/images/check.svg)|![](/images/check.svg)
-CRAM-MD5|![](/images/check.svg)| |![](/images/check.svg)|![](/images/check.svg)
-GSSAPI|![](/images/check.svg)| | |
-![](/images/check.svg) = successfully tested
-
-### Setup
-1. Configure LDAP by editing _$SONARQUBE-HOME/conf/sonar.properties_ (see table below)
-2. Restart the SonarQube server and check the log file for:
-```
-INFO org.sonar.INFO Security realm: LDAP ...
-INFO o.s.p.l.LdapContextFactory Test LDAP connection: OK
-```
-1. Log into SonarQube
-1. On logout users will be presented a login page (_/sessions/login_), where they can choose to login as technical user or a domain user by passing appropriate credentials
-
-From SonarScanners, we recommend using [local technical users](/instance-administration/security/) for authentication against SonarQube Server.
-
-**General Configuration**
-
-Property|Description|Default value|Required|Example
----|---|---|---|---
-`sonar.security.realm`|Set this to `LDAP` authenticate first against the external sytem. If the external system is not reachable or if the user is not defined in the external system, authentication will be performed against SonarQube's internal database.| none |Yes|`LDAP` (only possible value)
-`sonar.authenticator.downcase`|Set to true when connecting to a LDAP server using a case-insensitive setup.|`false`|No
-`ldap.url`|URL of the LDAP server. If you are using ldaps, you should install the server certificate into the Java truststore.| none |Yes|`ldap://localhost:10389`
-`ldap.bindDn`|The username of an LDAP user to connect (or bind) with. Leave this blank for anonymous access to the LDAP directory.|none|No|`cn=sonar,ou=users,o=mycompany`
-`ldap.bindPassword`|The password of the user to connect with. Leave this blank for anonymous access to the LDAP directory.|none|No|`secret`
-`ldap.authentication`|Possible values: `simple`, `CRAM-MD5`, `DIGEST-MD5`, `GSSAPI`. See [the tutorial on authentication mechanisms](http://java.sun.com/products/jndi/tutorial/ldap/security/auth.html)|`simple`|No
-`ldap.realm`|See [Digest-MD5 Authentication](http://java.sun.com/products/jndi/tutorial/ldap/security/digest.html), [CRAM-MD5 Authentication](http://java.sun.com/products/jndi/tutorial/ldap/security/crammd5.html)| none|No|example.org
-`ldap.contextFactoryClass`|Context factory class.|`com.sun.jndi.ldap.LdapCtxFactory`|No
-`ldap.StartTLS`|Enable use of `StartTLS`|`false`|No
-`ldap.followReferrals`|Follow referrals or not. See [Referrals in the JNDI](http://docs.oracle.com/javase/jndi/tutorial/ldap/referral/jndi.html)|`true`
-
-**User Mapping**
-
-Property|Description|Default value|Required|Example for Active Directory
----|---|---|---|---
-`ldap.user.baseDn`|Distinguished Name (DN) of the root node in LDAP from which to search for users.|None|Yes|`cn=users,dc=example,dc=org`
-`ldap.user.request`|LDAP user request.|`(&(objectClass=inetOrgPerson)(uid={login}))`|No|`(&(objectClass=user)(sAMAccountName={login}))`
-`ldap.user.realNameAttribute`|Attribute in LDAP defining the user’s real name.|`cn`|No|
-`ldap.user.emailAttribute`|Attribute in LDAP defining the user’s email.|`mail`|No|
-
-**Group Mapping**
-Only groups (not roles) and static groups (not dynamic groups) are supported. Click [here](http://identitycontrol.blogspot.fr/2007/07/static-vs-dynamic-ldap-groups.html) for more information.
-
-For the delegation of authorization, [groups must be first defined in SonarQube](/instance-administration/security/). Then, the following properties must be defined to allow SonarQube to automatically synchronize the relationships between users and groups.
-
-Property|Description|Default value|Required|Example for Active Directory
----|---|---|---|---
-`ldap.group.baseDn`|Distinguished Name (DN) of the root node in LDAP from which to search for groups.|none|No|`cn=groups,dc=example,dc=org`
-`ldap.group.request`|LDAP group request.|`(&(objectClass=groupOfUniqueNames)(uniqueMember={dn}))`|No|`(&(objectClass=group)(member={dn}))`
-`ldap.group.idAttribute`|Property used to specifiy the attribute to be used for returning the list of user groups in the compatibility mode.|`cn`|No|`sAMAccountName`
-
-### Sample Configuration
-```
-# LDAP configuration
-# General Configuration
-sonar.security.realm=LDAP
-ldap.url=ldap://myserver.mycompany.com
-ldap.bindDn=my_bind_dn
-ldap.bindPassword=my_bind_password
-
-# User Configuration
-ldap.user.baseDn=ou=Users,dc=mycompany,dc=com
-ldap.user.request=(&(objectClass=inetOrgPerson)(uid={login}))
-ldap.user.realNameAttribute=cn
-ldap.user.emailAttribute=mail
-
-# Group Configuration
-ldap.group.baseDn=ou=Groups,dc=sonarsource,dc=com
-ldap.group.request=(&(objectClass=posixGroup)(memberUid={uid}))
-```
-
-## Advanced LDAP Topics
-### Authentication Methods
-* **`Anonymous`** - Used when only read-only access to non-protected entries and attributes is needed when binding to the LDAP server.
-* **`Simple`** Simple authentication is not recommended for production deployments not using the ldaps secure protocol since it sends a cleartext password over the network.
-* **`CRAM-MD5`** - The Challenge-Response Authentication Method (CRAM) based on the HMAC-MD5 MAC algorithm ([RFC 2195](http://tools.ietf.org/html/rfc2195)).
-* **`DIGEST-MD5`** - This is an improvement on the CRAM-MD5 authentication method ([RFC 2831](http://www.ietf.org/rfc/rfc2831.txt)).
-* **`GSSAPI`** - GSS-API is Generic Security Service API ([RFC 2744](http://www.ietf.org/rfc/rfc2744.txt)). One of the most popular security services available for GSS-API is the Kerberos v5, used in Microsoft's Windows 2000 platform.
-
-For a full discussion of LDAP authentication approaches, see [RFC 2829](http://www.ietf.org/rfc/rfc2829.txt) and [RFC 2251](http://www.ietf.org/rfc/rfc2251.txt).
-
-### Multiple Servers
-To configure multiple servers:
-```
-# List the different servers
-ldap.servers=server1,server2
-
-# Configure server1
-ldap.server1.url=ldap://server1:1389
-ldap.server1.user.baseDn=dc=dept1,dc=com
-...
-
-# Configure server2
-ldap.server2.url=ldap://server2:1389
-ldap.server2.user.baseDn=dc=dept2,dc=com
-...
-```
-
-Authentication will be tried on each server, in the order they are listed in the configurations, until one succeeds. User/Group mapping will be performed against the first server on which the user is found.
-
-Note that all the LDAP servers must be available while (re)starting the SonarQube server.
-
-### Migrate users to a new authentication method
-If you are changing your delegated authentication method and migrating existing users from your previous authentication method, you can use the `api/users/update_identity_provider` web API to update your users' identity provider.
-
-### Troubleshooting
-* Detailed connection logs (and potential error codes received from LDAP server) are output to SonarQube's _$SONARQUBE_HOME/logs/web.log_, when logging is in `DEBUG` mode.
-
-* Time out when running SonarQube analysis using LDAP
-Java parameters are documented here: http://docs.oracle.com/javase/jndi/tutorial/ldap/connect/config.html. Such parameters can be set in `sonar.web.javaAdditionalOpts` in _$SONARQUBE-HOME/conf/sonar.properties_.
-
-## Revoking tokens for deactivated users
-When SonarQube authentication is delegated to an external identity provider (LDAP, SAML, GitHub, or GitLab), deactivating a user on the identity provider side does not remove any tokens associated with the user on the SonarQube side. We recommend deactivating the user in SonarQube at **Administration > Security > Users** by selecting **Deactivate** from the ![Settings drop-down](/images/gear.png) drop-down menu to ensure tokens associated with that user can no longer be used.
* on-board authentication and authorization mechanisms
* the ability to force users to authenticate before they can see any part of a SonarQube instance
-* the ability to delegate to authentication (for more see [Delegating Authentication](/instance-administration/delegated-auth/))
+* the ability to delegate to authentication (for more see [Authentication](/instance-administration/authentication/overview/))
Additionally, you can configure at a group or user level who can:
* see that a project even exists
[
{
"title": "Requirements",
- "children": ["/requirements/requirements/", "/requirements/hardware-recommendations/"]
+ "children": [
+ "/requirements/requirements/",
+ "/requirements/hardware-recommendations/"
+ ]
},
{
"title": "Analyzing Source Code",
"/analysis/generic-test/",
"/analysis/test-coverage/test-coverage-parameters/",
"/analysis/test-coverage/test-execution-parameters/"
- ]
+ ]
},
{
"title": "Importing External Issues",
- "children": ["/analysis/external-issues/", "/analysis/generic-issue/"]
+ "children": [
+ "/analysis/external-issues/",
+ "/analysis/generic-issue/"
+ ]
},
"/analysis/background-tasks/",
"/analysis/pull-request/",
{
"title": "Branches",
- "children": ["/branches/overview/", "/branches/branches-faq/"]
+ "children": [
+ "/branches/overview/",
+ "/branches/branches-faq/"
+ ]
},
{
"title": "CI Integration",
"/analysis/gitlab-integration/",
{
"title": "Bitbucket Integration",
- "children": ["/analysis/bitbucket-integration/", "/analysis/bitbucket-cloud-integration/"]
+ "children": [
+ "/analysis/bitbucket-integration/",
+ "/analysis/bitbucket-cloud-integration/"
+ ]
},
"/analysis/azuredevops-integration/"
]
},
{
"title": "User Account",
- "children": ["/user-guide/user-account/", "/user-guide/user-token/"]
+ "children": [
+ "/user-guide/user-account/",
+ "/user-guide/user-token/"
+ ]
},
"/user-guide/issues/",
"/user-guide/security-hotspots/",
"children": [
"/instance-administration/quality-profiles/",
"/instance-administration/security/",
- "/instance-administration/delegated-auth/",
+ {
+ "title": "Authentication",
+ "children": [
+ "/instance-administration/authentication/overview/",
+ "/instance-administration/authentication/http-header/",
+ "/instance-administration/authentication/ldap/",
+ "/instance-administration/authentication/saml/"
+ ]
+ },
"/instance-administration/look-and-feel/",
"/instance-administration/marketplace/",
"/instance-administration/housekeeping/",
]
},
"/faq/"
-]
+]
\ No newline at end of file
"/setup/get-started-2-minutes/",
{
"title": "Requirements",
- "children": ["/requirements/requirements/", "/requirements/hardware-recommendations/"]
+ "children": [
+ "/requirements/requirements/",
+ "/requirements/hardware-recommendations/"
+ ]
},
{
"title": "Setup and Upgrade",
"/setup/install-server/",
{
"title": "Configure and Operate a Server",
- "children": ["/setup/operate-server/", "/setup/environment-variables/"]
+ "children": [
+ "/setup/operate-server/",
+ "/setup/environment-variables/"
+ ]
},
"/setup/install-plugin/",
"/setup/install-cluster/",
"/setup/operate-cluster/",
{
"title": "Deploy on Kubernetes",
- "children": ["/setup/sonarqube-on-kubernetes/", "/setup/sonarqube-cluster-on-kubernetes/"]
+ "children": [
+ "/setup/sonarqube-on-kubernetes/",
+ "/setup/sonarqube-cluster-on-kubernetes/"
+ ]
},
{
"title": "Upgrade the Server",
- "children": ["/setup/before-you-upgrade/", "/setup/upgrading/"]
+ "children": [
+ "/setup/before-you-upgrade/",
+ "/setup/upgrading/"
+ ]
},
"/setup/upgrade-notes/",
"/setup/troubleshooting/"
"/analysis/generic-test/",
"/analysis/test-coverage/test-coverage-parameters/",
"/analysis/test-coverage/test-execution-parameters/"
- ]
+ ]
},
{
"title": "Importing External Issues",
- "children": ["/analysis/external-issues/", "/analysis/generic-issue/"]
+ "children": [
+ "/analysis/external-issues/",
+ "/analysis/generic-issue/"
+ ]
},
"/analysis/background-tasks/",
"/analysis/pull-request/",
{
"title": "Branches",
- "children": ["/branches/overview/", "/branches/branches-faq/"]
+ "children": [
+ "/branches/overview/",
+ "/branches/branches-faq/"
+ ]
},
{
"title": "CI Integration",
"/analysis/gitlab-integration/",
{
"title": "Bitbucket Integration",
- "children": ["/analysis/bitbucket-integration/", "/analysis/bitbucket-cloud-integration/"]
+ "children": [
+ "/analysis/bitbucket-integration/",
+ "/analysis/bitbucket-cloud-integration/"
+ ]
},
"/analysis/azuredevops-integration/"
]
},
{
"title": "User Account",
- "children": ["/user-guide/user-account/", "/user-guide/user-token/"]
+ "children": [
+ "/user-guide/user-account/",
+ "/user-guide/user-token/"
+ ]
},
"/user-guide/issues/",
"/user-guide/security-hotspots/",
"children": [
"/instance-administration/quality-profiles/",
"/instance-administration/security/",
- "/instance-administration/delegated-auth/",
+ {
+ "title": "Authentication",
+ "children": [
+ "/instance-administration/authentication/overview/",
+ "/instance-administration/authentication/http-header/",
+ "/instance-administration/authentication/ldap/",
+ "/instance-administration/authentication/saml/"
+ ]
+ },
"/instance-administration/look-and-feel/",
"/instance-administration/marketplace/",
"/instance-administration/plugin-version-matrix/",
]
},
"/faq/"
-]
+]
\ No newline at end of file