Tuesday, September 22, 2009

Oracle Apps R12 "default-web-site" range Issue

Issue

I was not able to validate oracle apps R12 self services. I noticed given below error in $INST_TOP/logs/appl/admin/log/adoacorectl.txt file while executing $INST_TOP/admin/scripts/adoacorectl.sh script to start services.

$INST_TOP/logs/appl/admin/log/adoacorectl.txt

09/22/09-17:14:46 :: adoacorectl.sh: Starting OPMN managed OACORE OC4J instance

 

opmnctl: starting opmn managed processes...

================================================================================

opmn id=ios11801e:6210

0 of 3 processes started.

 

ias-instance id=$CONTEXT_NAME.<SERVER_NAME>.<DOMAIN_NAME>

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

--------------------------------------------------------------------------------

ias-component/process-type/process-set:

default_group/oacore/default_group/

 

Error

--> Process (index=1,uid=257344462,pid=0)

no port available from the port range

failed to start a managed process after the maximum retry limit

no port available from the port range

no port available from the port range

Log:

none

 

--> Process (index=2,uid=257344463,pid=0)

no port available from the port range

failed to start a managed process after the maximum retry limit

no port available from the port range

no port available from the port range

Log:

none

 

--> Process (index=3,uid=257344464,pid=0)

no port available from the port range

failed to start a managed process after the maximum retry limit

no port available from the port range

no port available from the port range

Log:

none

 

Solution

There are two solution either make sure port is free at operating system or change port range in 10.1.3 $IAS_ORACLE_HOME/opmn/conf/opmn.xml file.

<port id="default-web-site" range="21550-21554" protocol="ajp"/>

<port id="rmi" range="20050-20054"/>

<port id="jms" range="23050-23054"/>

Free up port at OS level

$ netstat -na | egrep '21550|21551|21552|21553|21554'

tcp 0 0 *.21550 *.* LISTEN

tcp 0 0 *.21551 *.* LISTEN

tcp 0 0 *.21552 *.* LISTEN

Ask your unix team to execute rmshock to free of these ports or change port rang in opmn.xml file and restart services.

No comments: