Configuring SSL
You must configure SSL to secure data communication between Oracle Identity Governance and your target system.
- Obtain the SSL public key certificate for the SCIM-based target system.
- Copy the public key certificate of the SCIM-based target system to the computer hosting Oracle Identity Governance.
- Run the following
keytoolcommand to import the target system certificate into the Oracle WebLogic Server keystore:keytool -import -keystore KEYSTORE_NAME -storepass PASSWORD -file CERT_FILE_NAME -alias ALIASIn this command:-
KEYSTORE_NAME is the full path and name of the DemoTrust keystore.
-
PASSWORD is the password of the keystore.
-
CERT_FILE_NAME is the full path and name of the certificate file.
-
ALIAS is the target system certificate alias.
The following is a sample value for this command:
keytool -import -keystore WEBLOGIC_HOME/server/lib/DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase —file /home/target.cert —alias serverwlNote:
-
Change the parameter values passed to the
keytoolcommand according to your requirements. Ensure that there is no line break in the keytool arguments. -
Ensure that the system date for Oracle Identity Governance is in sync with the validity date of the SSL certificate to avoid any errors during SSL communication.
-