Monday, January 21, 2013

IDM OID realm creation


 I created IDM realm in Oracle IDM 11g 11.1.1.6. The following are the steps I followed. They are originally from this link: http://oracamp.com/how-create-new-realm-oid-11g
  • Set the ORACLE_HOME environment variable. 
          set ORACLE_HOME= e:\oracle\idm\idm_home
  • Run the ldapsearch command to list the existing default subscriber. 
            $ORACLE_HOME/bin/ldapsearch -h ldap_host -p port -D cn=orcladmin -w password -b “cn=common, cn=oraclecontext”-s base “objectclass=*” orcldefaultsubscriber
  • The results would be like as shown below
    cn=Common,cn=Products,cn=OracleContext
    orcldefaultsubscriber=dc=oracle,dc=com
  • Goto $ORACLE_HOME/ldap/bin
              Run oidrealm command as shown below to create a new realm. Enter the OID Admin password when it prompts.
./oidrealm ldap_host ldap_port dc=mydomain,dc=com
Check for the message Realm Updated as shown below which ensures that new realm dc=mydomain,dc=com is created.
  • Check for the new realm using the ldapsearch command as shown below.
  • $ORACLE_HOME/bin/ldapsearch -h ldap_host -p port -D cn=orcladmin -w password -b “dc=mydomain,dc=com”-s base “objectclass=*”

No comments:

Post a Comment