Configuring a Read-Only LDAP User Store¶
It is assumed that you have already setup your read-only LDAP user store. Follow the given steps to configure it as the primary user store in WSO2 API Manager:
- Step 1: Setting up the read-only LDAP/AD user store manager
- Step 2: Updating the system administrator
- Step 3: Starting the server
Info
API Manager is compatible with multiple user stores. Instead of using the embedded user store, you can set your own user store as the primary user store.
Step 1: Setting up the read-only LDAP/AD user store manager¶
The following are the minimum configurations that are required to configure the Read-only LDAP userstore manager.
Configuration Name | Display Name | Description |
---|---|---|
type | userstore Type | This indicates the type of userstore manager that we are using. For Read-only LDAP userstore manager, this value should be read_only_ldap_unique_id. |
base_dn | User Search Base | This is the DN of the context or object under which the user entries are stored in the userstore. When the userstore searches for users, it will start from this location of the directory. Sample values: ou=Users,dc=wso2,dc=org |
Following are the minimum userstore properties that are required to configure the Read-only LDAP userstore manager.
Property Id | Primary userstore Property | Secondary userstore Property | Description |
---|---|---|---|
ConnectionURL | connection_url | Connection URL | This is the connection URL to the user store server. Sample values: |
ConnectionName | connection_name | Connection Name | This is the username used to connect to the userstore and perform various operations. This user does not need to be an administrator in the userstore or have an administrator role in the WSO2 product that you are using, but this user must have permissions to read the user list and users' attributes and to perform search operations on the userstore. The value you specify is used as the DN (Distinguish Name) attribute of the user who has sufficient permissions to perform operations on users and roles in LDAP. This property is mandatory. |
ConnectionPassword | connection_password | Connection Password | Password for the ConnectionName user |
Replace the default user_store
configuration in the <APIM_HOME>/repository/conf/deployment.toml
file, as per your ldap server configuration. A sample configuration is given below.
[user_store]
type = "read_only_ldap_unique_id"
base_dn = "ou=system"
connection_url = "ldap://localhost:10389"
connection_name = "uid=admin,ou=system"
connection_password = "admin"
Properties used in read-only LDAP userstore manager¶
Any of the following properties can be configured for the PRIMARY
userstore by adding them as follows to
<APIM-HOME>/repository/conf/deployment.toml
.
Tip
The properties given below can also be configured for a secondary userstore through the management console.
Properties used in read-only LDAP userstore manager¶
Any of the following properties can be configured for the PRIMARY
userstore by adding them as follows to
<APIM-HOME>/repository/conf/deployment.toml
.
Tip
The properties given below can also be configured for a secondary userstore through the management console.
Property Id | Primary Userstore Property | Secondary Userstore Property | Description |
---|---|---|---|
UserEntryObjectClass | user_entry_object_class | User Entry Object Class | The object class that is used to construct user entries Default: identityPerson (a custom object class defined in WSO2 Identity Server) |
UserNameAttribute | user_name_attribute | Username Attribute | This is a uniquely identifying attribute that represents the username of the user. Users can be authenticated using their email address, UID, etc. The value of the attribute is considered as the username. Default: uid |
UserIDAttribute | user_id_attribute | User ID Attribute | This is the attribute used for uniquely identifying a user entry. The value of the attribute is considered as the unique user ID. Default: scimId |
UserNameSearchFilter | user_name_search_filter | User Search Filter | Filtering criteria used to search for a particular user entry Default : (&(objectClass=person)(uid=?)) |
UserNameListFilter | user_name_list_filter | User List Filter | This is the filtering criteria for searching user entries in the userstore. This query or filter is used when doing search operations on users with different search attributes. Default: (objectClass=person) In this case, the search operation only provides the objects created from the person object class. |
UserDNPattern | user_dn_pattern | User DN Pattern | This is the pattern for the user's DN, which can be defined to improve the search. When there are many user entries in the LDAP userstore, defining a UserDNPattern provides more impact on performances as the LDAP does not have to travel through the entire tree to find users. Sample values: uid={0},ou=Users,dc=wso2,dc=org |
DisplayNameAttribute | display_name_attribute | Display name attribute | This is an optional property. The Display Name Attribute is the name by which users will be listed when you list users in the management console.
Default: blank |
ReadGroups | read_groups | Read Groups | When WriteGroups is set to false , none of the groups in the userstore can be read, and the following group configurations are NOT mandatory: GroupSearchBase, GroupNameListFilter, or GroupNameAttribute.Default: true
|
WriteGroups | write_groups | Write Groups | Indicates whether groups should be write to the userstore Default: true
|
UserSearchBase | user_search_base | User Search Base | DN of the context or object under which the users are stored in the user store. When the user store searches for users, it will start from this location of the directory
Default: ou=Users,dc=wso2,dc=org |
GroupSearchBase | group_search_base | Group Search Base | This is the DN of the context or object under which the group entries are stored in the userstore. When the userstore searches for groups, it will start from this location of the directory. Default: ou=Groups,dc=wso2,dc=org |
GroupEntryObjectClass | group_entry_object_class | Group Entry Object Class | Object class used to construct group entries. Default: groupOfNames |
GroupNameAttribute | group_name_attribute | Group Name Attribute | This is the attribute used for uniquely identifying a group entry. This attribute is to be treated as the group name.
Default: cn |
GroupNameSearchFilter | group_name_search_filter | Group Search Filter | Filtering criteria used to search for a particular group entry Default: (&(objectClass=groupOfNames)(cn=?)) |
GroupNameListFilter | group_name_list_filter | Group List Filter | This is the filtering criteria for searching group entries in the userstore. This query or filter is used when doing search operations on groups with different search attributes. Default: ((objectClass=groupOfNames)) In this case, the search operation only provides the objects created from the groupOfName object class. |
RoleDNPattern | role_dn_pattern | Role DN Pattern | This denotes the pattern for the group's DN which can be defined to improve the search. When there are many group entries in the LDAP userstore, defining a RoleDNPattern provides more impact on performances as the LDAP does not have to traverse through the entire tree to find the group. Sample values: cn={0},ou=Groups,dc=wso2,dc=org |
MembershipAttribute | membership_attribute_range | Membership Attribute | Defines the attribute that contains the distinguished names (DN) of user objects that are in a group Default: member |
MemberOfAttribute | member_of_attribute | Member Of Attribute | Defines the attribute that contains the distinguished names (DN) of group objects that a user is assigned to Possible values: memberOf |
BackLinksEnabled | back_links_enabled | Enable Back Links | This defines whether the backlink support is enabled. If you are using MemberOfAttribute attribute, this should be set to true .
Default : false |
UsernameJavaRegEx | username_java_regex | Username RegEx (Java) | This is the regular expression used by the back-end components for username validation. By default, strings with non-empty characters have a length of 3 to 30 allowed. You can provide ranges of alphabets, numbers, and ASCII values in the RegEx properties. Default: [a-zA-Z0-9._\-|//]{3,30}$ |
UsernameJava ScriptRegEx |
username_java _script_regex |
Username RegEx (Javascript) | The regular expression used by the front-end components for username validation Default: ^[\S]{3,30}$ |
UsernameJavaReg ExViolationErrorMsg |
username_java_reg _ex_violation_error_msg |
Username RegEx Violation Error Message | Error message when the Username does not match with UsernameJavaRegEx Default: Username pattern policy violated |
PasswordJavaRegEx | password_java_regex | Password RegEx (Java) | The regular expression used by the back-end components for password validation. By default, strings with non-empty characters have a length of 5 to 30 allowed. You can provide ranges of alphabets, numbers, and ASCII values in the RegEx properties. Default: ^[\S]{5,30}$ |
PasswordJava ScriptRegEx |
password_java _script_regex |
Password RegEx (Javascript) | The regular expression used by the front-end components for password validation Default: ^[\S]{5,30}$ |
PasswordJavaReg ExViolationErrorMsg |
password_java_reg ex_violation_error_msg |
Password RegEx Violation Error Message | Error message when the Password is not matched with passwordJavaRegEx Default: Password length should be within 5 to 30 characters |
RolenameJavaRegEx | rolename_java_regex | Role Name RegEx (Java) | The regular expression used by the back-end components for role name validation. By default, strings with non-empty characters have a length of 3 to 30 allowed. You can provide ranges of alphabets, numbers and also ranges of ASCII values in the RegEx properties. Default: [a-zA-Z0-9._\-|//]{3,30}$ |
SCIMEnabled | scim_enabled | Enable SCIM | This is to configure whether user store is supported for SCIM provisioning. Possible values: True : User store support for SCIM provisioning. False: User does not store support for SCIM provisioning. Default: true |
PasswordHashMethod | password_hash_method | Password Hashing Algorithm | Specifies the Password Hashing Algorithm used the hash the password before storing in the userstore If you configure this as SHA, it is considered as SHA-1. It is always better to configure algorithm with a higher bit value as the digest bit size would be increased. |
MultiAttribute Separator |
multi_attribute _separator |
Multiple Attribute Separator | This property is used to define a character to separate multiple attributes. This ensures that it will not appear as part of a claim value. Normally “,” is used to separate multiple attributes, but you can define ",,," or "..." or a similar character sequence. Default: “,” |
MaxUserName ListLength |
max_user_name _list_length |
Maximum User List Length | This controls the number of users listed in the userstore of WSO2 API Manager. This is useful when you have a large number of users and don't want to list them all. Setting this property to 0 displays all users. Default: 100 In some userstores, there are policies to limit the number of records that can be returned from the query. Setting the value to 0 will list the maximum results returned by the userstore. If you need to increase this, you need to set it in the userstore level. Eg : Active directory has the MaxPageSize property with the default value as 1000. |
MaxRoleName ListLength |
max_role_name_ list_length |
Maximum Role List Length | This controls the number of roles listed in the userstore of WSO2 API Manager. This is useful when you have a large number of roles and don't want to list them all. Setting this property to 0 displays all roles. Default: 100 In some userstores, there are policies to limit the number of records that can be returned from the query. Setting the value to 0 will list the maximum results returned by the userstore. If you need to increase this, you need to set it in the userstore level. Eg: Active directory has the MaxPageSize property with the default value as 1000. |
kdcEnabled | kdc_enabled | Enable KDC | If your userstore is capable of acting as a Kerberos Key Distribution Center (KDC) and if you prefer to enable it, set this property to true .Default: false |
UserRoles CacheEnabled |
user_roles_ cache_enabled |
Enable User Role Cache | This is to indicate whether to cache the role list of a user. Default: true Possible values: false: Set it to false if the user roles are changed by external means and those changes should be instantly reflected in the Carbon instance.
Default: true |
Connection PoolingEnabled |
connection_ pooling_enabled |
Enable LDAP Connection Pooling | Defines whether LDAP connection pooling is enabled Possible values: True: Enables connection pooling. Enabling it will improve the performance. False: Disables connection pooling Default: false |
LDAPConnectionTimeout | ldap_connection_timeout | LDAP Connection Timeout | Timeout in making the initial LDAP connection. This is configured in milliseconds. Default: 5000 |
ReadTimeout | read_timeout | LDAP Read Timeout | The value of this property is the read timeout in milliseconds for LDAP operations. If the LDAP provider cannot get an LDAP response within that period, it aborts the read attempt. The integer should be greater than zero. An integer less than or equal to zero indicates that no read timeout is specified, which is equivalent to waiting for the response infinitely until it is received.
Default: not configured |
Membership AttributeRange |
membership_ attribute_range |
Membership Attribute Range | This is to define the maximum users of role returned by the LDAP/AD userstore. This does not depend on the max page size of the userstore. Default: not configured |
RetryAttempts | retry_attempts | Retry Attempts | Retry the authentication request if a timeout happens
Default: not configured |
Following are some key points to consider :
-
Update the connection details to match your user store. For example:
For Active Directory, the connection URL should have the following format:
Note
If you are using
ldaps
(secured LDAP) to connect to the LDAP/Active Directory:-
You need set the
ConnectionURL
as shown below. -
For Active Directory, you need to import the certificate of Active Directory to the
client-truststore.jks
of the WSO2 product. For information on how to add certificates to the truststore and how keystores are configured and used in a system, see Using Asymmetric Encryption . -
You also need to enable connection pooling for LDAPS connections at the time of starting your server, which will enhance server performance.
-
-
Obtain a user who has permission to read all users/attributes and perform searches on the user store from your LDAP/Active Directory administrator. For example, if the privileged user is
admin
and the password isadmin
, update the following sections of the user store configuration as shown below. Note that this user does NOT have to be the system administrator that you define here . -
Update
UserSearchBase
with the directory name where the users are stored. When LDAP searches for users, it will start from this location of the directory. -
Set the attribute to use as the username, typically either
cn
oruid
for LDAP. Ideally,UserNameAttribute
andUserNameSearchFilter
should refer to the same attribute. If you are not sure what attribute is available in your user store, check with your LDAP/Active Directory administrator. For example: -
Set the
ReadGroups
property to 'true', if it should be allowed to read roles from this user store. When this property is 'true', you must also specify values for theGroupSearchBase
,GroupSearchFilter
andGroupNameAttribute
properties. If theReadGroups
property is set to 'false', only Users can be read from the user store. You can set the configuration to read roles from the user store by reading the user/role mapping based on a membership (user list) or back link attribute as shown below. To read the user/role mapping based on a membership (This is used by theApacheDirectory
server andOpenLDAP)
:-
Enable the
ReadGroups
property. -
Set the
GroupSearchBase
property to the directory name where the Roles are stored. That is, the roles you create using the management console of your product will be stored in this directory location. Also, when LDAP searches for users, it will start from this location of the directory. For example: -
Set the GroupSearchFilter and GroupNameAttributes. For example:
-
Set the
MembershipAttribute
property as shown below:To read roles based on a backlink attribute, use the following code snippet instead of the above:
-
-
For Active Directory, you can use
Referral="follow
to enable referrals within the user store. The AD user store may be partitioned into multiple domains. However, according to the use store configurations in thedeployment.toml
file, we are only connecting to one of the domains. Therefore, when a request for an object is received to the user store, theReferral="follow"
property ensures that all the domains in the directory will be searched to locate the requested object. -
In WSO2 products based on Carbon 4.5.x, you can set the
LDAPConnectionTimeout
property: If the connection to the LDAP is inactive for the length of time (in milliseconds) specified by this property, the connection will be terminated.
Following is a sample of read-only LDAP related user_store_properties in <API-M_HOME>/repository/conf/deployment.toml
file:
[user_store.properties]
ConnectionURL="ldap://localhost:10390"
ConnectionName="uid=admin,ou=system"
ConnectionPassword="admin"
AnonymousBind="false"
UserNameAttribute="uid"
UserNameSearchFilter="(&(objectClass=person)(uid=?))"
ReadGroups="true"
GroupSearchBase="ou=system,CN=Users,DC=wso2,DC=test"
GroupNameAttribute="cn"
GroupNameSearchFilter="(&(objectClass=groupOfNames)(cn=?))"
GroupNameListFilter="(objectClass=groupOfNames)"
MembershipAttribute="member"
BackLinksEnabled="false"
UsernameJavaRegEx="[a-zA-Z0-9._\\-|//]{3,30}$"
PasswordJavaRegEx="^[\\S]{5,30}$"
SCIMEnabled="true"
PasswordHashMethod="PLAIN_TEXT"
MultiAttributeSeparator=","
MaxUserNameListLength="100"
MaxRoleNameListLength="100"
UserRolesCacheEnabled="true"
LDAPConnectionTimeout=5000
ReplaceEscapeCharactersAtUserLogin="true"
ConnectionRetryDelay="120000"
GroupSearchFilter="(objectClass=groupOfNames)"
UserEntryObjectClass="identityPerson"
IsBulkImportSupported="true"
defaultRealmName="WSO2.ORG"
EmptyRolesAllowed="true"
UserSearchBase="ou=Users,dc=wso2,dc=org"
ConnectionPoolingEnabled="false"
StartTLSEnabled="false"
WriteGroups="true"
RolenameJavaRegEx="[a-zA-Z0-9._\\-|//]{3,30}$"
GroupEntryObjectClass="groupOfNames"
EnableMaxUserLimitForSCIM="false"
PasswordJavaRegExViolationErrorMsg="Password length should be within 5 to 30 characters"
PasswordJavaScriptRegEx="^[\\S]{5,30}$"
UsernameJavaRegExViolationErrorMsg="Username pattern policy violated"
UserNameListFilter="(objectClass=person)"
UsernameJavaScriptRegEx="^[\\S]{3,30}$"
kdcEnabled="false"
Step 2: Updating the system administrator¶
The admin user is the super tenant that will be able to manage all other users, roles and permissions in the system by using the management console of the product. Therefore, the user that should have admin permissions is required to be stored in the user store when you start the system for the first time. By default, the system will create an admin user in the LDAP that has admin permissions. But this cannot be done it the LDAP user store is read-only. Hence that capability should be disabled in the <APIM_HOME>/repository/conf/deployment.toml
file as follows:
- create_admin_account: This should be set to 'False' as it will not be allowed to create users and roles in a read-only user store.
- admin_role: The admin role you enter here should already exist in the read-only user store. Otherwise, you must enter an internal role, which will be saved to the internal database of the system when the system starts the first time.
- username: Since we are configuring a read-only LDAP as the primary user store, the user that should have admin permissions is required to be stored in the user store when you start the system for the first time. For example, say a valid username is AdminSOA. Update the
username
section of your configuration as shown above. You do not have to update the password element as it is already set in the user store.
If the user store can be written to, you can add the super tenant user to the user store. Therefore, create_admin_account should be set to true as shown below.
For information about the system administrator user, see Configuring the System Administrator , and for information on how keystores are used in WSO2 products, see Using Asymmetric Encryption .Step 3: Starting the server¶
Start your server and try to log in as the admin user you specified. The password is the admin user's password in the LDAP server.