SSL Connectivity setup between OIM 11g (R1, R2) and Database
In this post I will cover the steps that are required to setup SSL connectivity between OIM and its underlying repository i.e. Oracle Database. ROOT CA WALLET Navigate to the following path: /home/oracle/app/oracle/product/11.2.0/dbhome_1/bin Create a wallet by using the command: ./orapki wallet create -wallet /home/oracle/wallet/root -pwd welcome1 Add a self signed certificate to the CA wallet by using the command: ./orapki wallet add -wallet /home/oracle/wallet/root -dn 'CN=root_test,C=US' -keysize 2048 -self_signed -validity 3650 -pwd welcome1 View the wallet using the command: ./orapki wallet display -wallet /home/oracle/wallet/root -pwd welcome1 Export the self signed certificate from the CA wallet using the command: ./orapki wallet export -wallet /home/oracle/wallet/root -dn 'CN=root_test,C=US' -cert /home/oracle/wallet/root/self_signed_CA.cert -pwd welcome1 DB SERVER WALLET Create a server wallet using the command: ./ora...