I was running config.sh from $MW_HOME/Oracle_IDM1/bin, Bootstrap complete 100% and configure oracle Identity management components was stuck @14%.
I look at the log oidctl.log. $MW_HOME/asinst_1/diagnostics/log/OID/oid1/oidctl.log
My oid version is 11.1.1.9.0.
I look at the log oidctl.log. $MW_HOME/asinst_1/diagnostics/log/OID/oid1/oidctl.log
[2017-06-16T12:06:50.410657- 04:00] [OID] [NOTIFICATION:16] [] [] [host:xxxxxxx [pid: 17936] [tid: 0] OIDCTL:: WARNING: Connected to incorrect OID base schema version, (version=OID 11.1.1.5.0
).
solution is the below
SQL> select owner,version,status from schema_version_registry;
OWNER VERSION STATUS
------------------------------ ------------------------------ -----------
DEV_MDS 11.1.1.7.0 VALID
ODS 11.1.1.7.0 VALID
DEV_ORASDPM 11.1.1.7.0 VALID
DEV_SOAINFRA 11.1.1.7.0 VALID
SQL> select attrval from ods.ds_attrstore where entryid= 1 and attrname = 'orcldirectoryversion';
ATTRVAL
------------------------------ ------------------------------ --------------------
OID 11.1.1.5.0
SQL> update ods.ds_attrstore set attrval='OID 11.1.1.9.0' where entryid= 1 and attrname = 'orcldirectoryversion';
1 row updated.
SQL> commit;
Commit complete.
$rm -rf user_projects
$rm -rf asinst_1
I restarted my configuration, It completed 100%.