Pages

Friday, November 16, 2012

DIP Issue :Unable to locate the DIP Sync profile mbean

Dip shows two red down arrows in EM for both Quartz Scheduler and MBeans, yet the DIP(11.1.1.2.0) shows a green up arrow.

When I try to perform a connection test (right click on DIP--->Administration---->Server Properties), I get the following error.

The connection test could not be performed.
The test aborted with the message : Unable to locate the DIP Sync profile mbean - :oracle.idm.integration.sync.config:*:
Unable to locate the DIP Sync profile mbean - :oracle.idm.integration.sync.config:*:
java.lang.Exception: Unable to locate the DIP Sync profile mbean - :oracle.idm.integration.sync.config:*:
at oracle.sysman.emas.model.iam.dip.utl.DIPJMXHelper.getSyncProfileObjectName(DIPJMXHelper.java:244)
at oracle.sysman.emas.model.iam.dip.utl.DIPJMXConfigSetHelper.testEndPoint(DIPJMXConfigSetHelper.java:706)
at oracle.sysman.emas.model.iam.dip.utl.DIPJMXConfigSetHelper.testEndPointConnection(DIPJMXConfigSetHelper.java:684)
at oracle.sysman.emas.view.iam.dip.DIPIntgProfileView.testConfigSetLDAPConnection(DIPIntgProfileView.java:2436)
at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)



Sloution :

the issue was related to the order in which I started the components.


http://docs.oracle.com/cd/E15523_01/oid.1111/e10029/app_stopstart.htm

As per this link:

Start admin server

Start OID instance (opmnctl startall)

Start managed server









Monday, November 5, 2012

OAM11.1.1.5 Issue -Obrareq Query String Integrity Check Failed

Refer below article on oracle support-

Sunday, November 4, 2012

RCU Error - SYS account can’t login remotely


When Setup OID/OAM, not able to use sys or system account to create as reqired as SYS/SYSTEM can’t login remotely.

Workarround solution is to create temporally dba account for the setup.


When Setup OID using RCU, failed on following statement due to SYS account can’t login remotely.


Grant job execute right to ODS.

Modify /var/opt/oracle/inventoryLoc

Dir=/u01/iam/inventoryDirecotry

Group=fmw

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