Saturday, September 27, 2014

FIX: OAAM 11g R2 PS2 SOAP Web service configuration issue.

Issue:

When trying to enable OAAM web services you might get "Cannot locate policy manager query/update service" error message.

Solution:

1) Login to Enterprise Manager Console and navigate Weblogic Domain>> Web Services >>Platform Policy Configuration

2) Add new property "java.naming.provider.url" and value as t3://<<HOSTNAME>>:<<OAAMMANAGEDSERVER>> as shown in the below screen shot.

3) Then, restart OAAM Weblogic Admin & Managed Servers.



-- Siva Pokuri.

Thursday, September 25, 2014

Enable detailed error messages in Oracle Unified Directory 11g

Steps to enable detailed error messages in Oracle Unified Directory


1. Login to OUD Directory server installed machine
2. Navigate to OUD installed directory

In my case: /home/oracle/Oracle/Middleware_OUD/asinst_1/OUD/bin

3. Execute below command to check “return-bind-error-messages” property value

./dsconfig get-global-configuration-prop -p 4444 -h pokuri.demo.com -D "cn=Directory Manager" -j password

Note: password in the above command is a file that contains password in the same directory

Here is the sample output:

            


4. To update the “return-bind-error-messages” property value from “false” to “true” execute the below command.

./dsconfig -h pokuri.demo.com -p 4444 -D "cn=Directory Manager" -j password set-global-configuration-prop --set return-bind-error-messages:true

Note: password in the above command is a file that contains password in the same directory

Here is the sample output of the updated property:




5. Testing with sample user. After 3 unsuccessful login attempts there is a message showing “Account is locked” in the below screen.



Hope this helps !!!


-- Siva Pokuri.

Thursday, September 18, 2014

How to Installation & Configuration Oracle Unified Directory (OUD) 11g R2

-- Download Oracle Unified Directory 11g R2 from http://edelivery.oracle.com


-- Installation








-- Configuration










-- Login to Oracle Unified Directory using any LDAP Browser.


-- Siva Pokuri.