Posts

Showing posts with the label OIM_V1

SSL Connectivity setup between OIM 11g (R1, R2) and Database

Image
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...

OIM 11g R2 PS2 - Notify Failed Reconciliation Events

Image
In this post , I will cover a scenario where in we want to notify an admin for the failed reconciliation events specially for trusted recon on a regular basis. This feature is not available out-of-the-box and a custom scheduled job can be developed to address this requirement. RECON_EVENTS is the OIM table which holds the information about all the recon events till date along with status and dates.                                                                                                  ...