...
The following steps are required before configuration of authentication with LDAPS or LDAP over TLS:
- Obtain Obtain the server certificate for the authentication server from your LDAP administrator.
- Start a command shell and copy the server certificate to the platform host. If using JRE on a platform side, change
- Change the directory to
$JAVA_HOME/jre/lib/security
on the platform host. Otherwise, change the path to where$JAVA_HOME
/jre/lib/security.
points to your JDK directory. Install the server certificate using the Java keytool command:
Code Block language text theme Eclipse keytool -import -file <certificate> -keystore cacerts
...