简介
This page describes how to set up LDAP to give Superadmin users and end users access to UiPath Process Mining. To enable LDAP for UiPath Process Mining you must specify the ldap
object in the ExternalAuthenticationProviders
setting the Server Settings.
注意
LDAP for UiPath Process Mining is only supported with Microsoft Active Directory.
Configure LDAP settings
Go to the Settings tab of the Superadmin page of your UiPath Process Mining installation. See illustration below.
Add the required LDAP settings in the ExternalAuthenticationProviders
setting of the Server Settings for the ldap
object. Below is a description of the JSON keys of the ldap
object:
Key | Description |
---|---|
url | The LDAP url domain controller in the domain you want to use. This url needs to be accessible from the UiPath Process Mining server. Use the format: ldap://dc.company.domain.com. |
base | The LDAP base distinguished name to authenticate users under. Use the format: |
bindDN | The username of the AD user that is used to bind to the AD. This user should have the rights to query user groups for users that are allowed to login. |
bindCredentials | The password of the user specified in bindDN. |
search_query | Enables you to specify whether users can login with a different attribute than userPrincipalName. |
tlsOptions | Enables you to specify additional options for use with LDAPS. See also Set up Secure LDAP. |
See below for an example.
"ExternalAuthenticationProviders" {
"ldap": {
"url": "ldap://ldapserver",
"base": "DC=company,DC=local",
"bindDN": "username",
"bindCredentials": "password",
}
}
Click on SAVE to save the LDAP settings.
Press F5 to refresh the Superadmin page. This loads the new settings and enables users groups to be created based on these settings.
大约一年前更新