OC4J not coming up after export the new configset

Hi all, this post regarding OC4J issue while bounce the services after export the new configset in production machines.

Environment details:  In production environment we have two OAS sitting in two different machines. Both are cluster. As per requirement we create a new configset (refer this link) and I export the new configset in both nodes in production machines. Later I tried to bounces the services in both nodes, all services came smoothly but OC4J not came up.

After long investigation I came to know that SSL port is not enabled in new configset1.

Below action plan helps to resolve this issue:

1.    Verify ldapbind in both nodes.

Node 1: oracle_home/bin>./ldapbind -h hostname -p 389

Node 2: oracle_home/bin>./ldapbind -h hostname -p 389

Result: bind successful. So I confirmed OID is working fine.

2.    Please create the following LDIF file called ‘modify.ldif’

———-start modify.ldif – NOTE: do not include this line———

dn: cn=configset1, cn=osdldapd, cn=subconfigsubentry

changetype: modify

replace: orclsslenable

orclsslenable: 2

———-end modify.ldif – NOTE: do not include this line———

3.    Implement this change with this command:

Oracle_home/bin>./ldapmodify -h <oid_hostname> -p <oid_port> -D “cn=orcladmin” -w <password> -v -f modify.ldif

4.    Restart OID with the command:

$ORACLE_HOME/opmn/bin/opmnctl stopproc process-type=OID

then restart with the command:

$ORACLE_HOME/opmn/bin/opmnctl startproc process-type=OID

5.    Now the processes should start with this command:

$ORACLE_HOME/opmn/bin/opmnctl startall

6.    Repeat step 3 and 4 ONLY on Node 2.

Scroll to Top