Pages

Sunday, November 4, 2012

Issue with OID install and Configure

I found following issue while installing OID11.1.1.6 -

During IDM installation, I selected the option "Install and Configure".
Installation set up is successful. But it failed while configuring Oracle Identity Management Components - step2 - Start Oracle Internet Directory - Failed.
Checked the log -
0000JezC4hb4iogEtF2jKH1G^noc000003,0] Failed to start component oid1[[
oracle.as.config.ProvisionException: HTTP status code = 400 : The request parameters did not match any components

Check the oidmon diagnostics log file  oidmon-0000.log and oidldapd01-0000.log, and I see this:

Connected to incorrect OID base schema version, (version=11.1.1.4.0). WARNING: OID server (version 11.1.1.6.0) is now operating in read_only mode



Solution:

I did some checking, and ran this SQL, e.g.:

SQL> SELECT owner, version, status FROM schema_version_registry;

OWNER VERSION STATUS
------------------------------

DEV_IAU 11.1.1.6.0 VALID
DEV2_IAU 11.1.1.6.0 VALID
DEV2_MDS 11.1.1.6.0 VALID
ODS 11.1.1.6.0 VALID

which seems to show that the ODS schema is 11.1.1.6 now, but, this:

SQL>select attrval from ods.ds_attrstore where entryid =1 and attrname = 'orcld
irectoryversion';

ATTRVAL

OID 11.1.1.4.0

seems to indicate that the schema is still setup for 11.1.1.4?

I finally found this:
http://newappsdba.blogspot.com/2009_09_01_archive.html

where it suggested running an update to force the orcldirectoryversion:

So, I did that:

SQL> update ods.ds_attrstore set attrval='OID 11.1.1.6.0' where entryid=1 and attrname='orcldirectoryversion';

1 row updated.

SQL> commit;

Commit complete.

SQL> select attrval from ods.ds_attrstore where entryid=1 and attrname='orcldirectoryversion';

ATTRVAL

OID 11.1.1.6.0

Then, I tried starting the OID processes, and got:

Processes in Instance: asinst_1
---------------------------------+--------------------+---------+---------
ias-component | process-type | pid | status
---------------------------------+--------------------+---------+---------
ohs1 | OHS | 1584 | Alive
ovd1 | OVD | 1592 | Alive
oid1 | oidldapd | 1820 | Alive
oid1 | oidldapd | 1752 | Alive
oid1 | oidmon | 1600 | Alive
EMAGENT | EMAGENT | 1576 | Alive
All the best... :)

If ODS schema version is correct then try recreating the schema or recreating the database.

Regards
Santosh Shukla

 

1 comment:

  1. Nice post, Thanks for your post.

    http://appstier.blogspot.in

    ReplyDelete