3.1 Setting up a Secure Channel Between the Application Server and LDAP Server

In a production environment, SSPR should trust the LDAP server’s certificate. The three scenarios based on which a secure channel can be established are:

To export the certificate from eDirectory using iManager, see http://www.novell.com/communities/node/8757/exporting-ssl-certificate-using-imanager.

To export certificate from Active Directory, see http://technet.microsoft.com/en-us/library/cc772393.

3.1.1 Importing Certificate into Java Keystore

The certificate database is located in the following location:

JAVA_HOME\lib\security\cacerts

where JAVA_HOME is the directory where java is installed.

Use the keytool to import the file

cd <JAVA_HOME>\jre\bin
keytool -importcert -alias <alias>  -file <filepath> -keystore
..\lib\security\cacerts -storepass <password>

The keytool prompts for a password, which is changeit by default.