Skip to main content

Posts

Showing posts from November, 2021

51 Most important Oracle Identity Manager Interview Questions

Oracle Identity Manager Interview Questions  Following are the majorly asked interview questions related to Oracle Identity Manager. Most of the interviewers check the domain knowledge than product knowledge. 1. What is Sandbox 2. What is IT resource 3.What is adapters and their types 4.What are the steps for OIM installation 5. What is Certification 6.What are the connector artifacts 7.Difference between 11g and 12c  8.What is process form 9. What is identity management 10.What is scheduler 11. What is event handlers and their types 12.Process for deployment of scheduler, event handler and adapter 13.What is application onboarding 14. What is RCU 15.What is Segregation of Duties(SOD) 16.What is Access policy  17.What is Role based access control(RBAC) 18.What is bulk load 19.What is password policy 20.What is Catalog 21.Process for patching 22.What is resource object 23.What is application instance 24.What is plugin and how to register plugin 25.What is the SOA workflow ...

How to Run_HRMS_DBScripts.sh for OIM EBS Integration

How to Run_HRMS_DBScripts.sh for OIM EBS HRMS Integration Introduction-When you are doing OIM-EBS HRMS integration, there is requirement to create integration service account for this integration. After you download the connector from Oracle website, you have to copy connector folder in the Linux server location where EBS HRMS is installed. Unzip the connector bundle and from the script folder, execute following script. Enter following inputs as per your environment.  [oracle@ipod-elphx01 scripts]$ sh Run_HRMS_DBScripts.sh ORACLE_HOME is :: /u01/app/oracle/EBSPH01/11.2.0.4.15 Enter the System User Name :: system Enter the name of the database :: EBSPH01 Would you like to create new user for connector operations [y/n]:y Are you running this script with EBS target 12.1.x [y/n]:y   SQL*Plus: Release 11.2.0.4.0 Production on Fri May 8 13:46:30 2020   Copyright (c) 1982, 2013, Oracle.  All rights reserved.   Connecting to APPS Enter password: Connected.   P...

How to UploadJars.sh ICFBundle Jar in Oracle Identity Manager

How to UploadJars.sh ICFBundle Jar in Oracle Identity Manager Introduction-Suppose you have developed ICFBundle connector code, now you want to deploy connector code in OIM as ICFBundle Jar, following are the steps to deploy. Navigate to the following location and run below script. [oracleapp@elcosapoim3:/opt/oracle/apps/OIM_Middleware/idm/server/bin]$ ./UploadJars.sh  For running the Utilities the following environment variables need to be set  APP_SERVER is weblogic  OIM_ORACLE_HOME is /opt/oracle/apps/OIM_Middleware/idm  JAVA_HOME is /opt/oracle/apps/jdk1.8.0_271  MW_HOME is /opt/oracle/apps/OIM_Middleware  WL_HOME is /opt/oracle/apps/OIM_Middleware/wlserver  DOMAIN_HOME is /opt/oracle/apps/OIM_Middleware/user_projects/domains/OIG_domain  For running the Utilities the following environment variables need to be set  APP_SERVER is weblogic  OIM_ORACLE_HOME is /opt/oracle/apps/OIM_Middleware/idm  JAVA_HOME is /opt/oracle/apps/jdk1.8...

How to Import Certificate in OIM Keystore

How to Import Certificate in OIM  KeyStore Commands to import certificate into OIM keystore are as below. If you have custom keystore, you can import certificate in custom keystore or if you do not have custom keystore, you can import in DemoTrust.jks keystore. 1.Import Certificate- keytool -import -keystore /opt/oracle/apps/jdk/jre/lib/security/cacerts -file /home/oracleapp/cert/wdsandbox.cer -storepass changeit -alias wdsandbox keytool -import -keystore /opt/oracle/apps/OIM_Middleware/wlserver/server/lib/oimtruststore.jks -file /home/oracleapp/cert/wdsandbox.cer -alias wdsandbox -storepass 0imtrustst0repassw0rd keytool -import -keystore /opt/oracle/apps/OIM_Middleware/wlserver/server/lib/oimkeystore.jks -file /home/oracleapp/cert/wdsandbox.cer -alias wdsandbox -storepass 0imkeyst0repassw0rd keytool -import -keystore /opt/oracle/apps/OIM_Middleware/wlserver/server/lib/DemoTrust.jks -file /home/oracleapp/cert/wdsandbox.cer -storepass DemoTrustKeyStorePassPhrase -alias wdsandbo...

javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

javax.net.ssl. SSLHandshakeException: sun.security.validator. ValidatorException: PKIX path building failed: sun.security.provider. certpath. SunCertPathBuilderException: unable to find valid certification path to requested target         at sun.security.ssl.Alert. createSSLException(Alert.java: 131)         at sun.security.ssl. TransportContext.fatal( TransportContext.java:370)         at sun.security.ssl. TransportContext.fatal( TransportContext.java:313)         at sun.security.ssl. TransportContext.fatal( TransportContext.java:308)         at sun.security.ssl. CertificateMessage$ T12CertificateConsumer. checkServerCerts( CertificateMessage.java:652)         at sun.security.ssl. CertificateMessage$ T12CertificateConsumer. onCertificate( CertificateMessage.java:471)         at sun.security.ssl. CertificateMessage$ T12CertificateConsumer. consume(C...