Hi, I installed and configured LDAP as per the steps provided in the below link. https://computingforgeeks.com/install-configure-openldap-server-centos/
[root@centos8 openldap]# netstat -ltnp | grep slapd Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:636 0.0.0.0:* LISTEN 516121/slapd tcp 0 0 0.0.0.0:389 0.0.0.0:* LISTEN 516121/slapd tcp6 0 0 :::389 :::* LISTEN 516121/slapd tcp6 0 0 :::3306 :::* LISTEN 1869/mysqld The slapd service seem to be running on 389 port whereas the code was referring to 11389 port. So I tried modifying the hard coded value from 11389 to 389 in the below file, $HOME/apache-cloudstack-4.15.0.0-src/plugins/user-authenticators/ldap/src/test/java/org/apache/cloudstack/ldap/LdapUnitConnectionTest.java static final int PORT =11389 to static final int PORT = 389 Now I am getting the error as, <<< ERROR! com.unboundid.ldap.sdk.LDAPException: An error occurred while attempting to start listener 'default': BindException(Address already in use (Bind failed)), What is expected to be done then to resolve the error initially posted ? Is LDAP connection a pre-requisite for the source to be built ? Thanks, Hema
