LDAP: error code 12 - Unavailable Critical Extension When Doing Sync of LDAP Groups on IAM
search cancel

LDAP: error code 12 - Unavailable Critical Extension When Doing Sync of LDAP Groups on IAM

book

Article ID: 143101

calendar_today

Updated On:

Products

CA Application Test Service Virtualization

Issue/Introduction

The error "LDAP: error code 12 - Unavailable Critical Extension" may occur because your LDAP server doesn't support paged results. 

By default, the pagination is set to true in IAM as most of the LDAP servers support pagination. As a result, we are getting this error when trying to sync the LDAP groups. 

This can be resolved by turning off the pagination in IAM. But currently, we do not have this option exposed in the IAM UI

Environment

All supported DevTest releases.

Cause

Pagination in IAM

Resolution

However, we can run the below steps and query to turn it off (assuming there is one LDAP configuration in IAM):

1) Stop the IAM Server.

2) Connect to the IAM Database and run the below commands:

UPDATE COMPONENT_CONFIG SET VALUE=false WHERE NAME='pagination';
COMMIT;

3) Disconnect the database connection

4) Start the IAM Server.

5) Able to sync the LDAP Groups.