adoacorectl - ERROR : Timed out( 100000 ): Interrupted Exception

Please look at all 3 possible solution provided below:


Errors:
Description: cid:image001.png@01CD43C7.4A031000
****************************************************
Executing service control script:
/app/oracle/product/applts2/inst/apps/ebsts2_ebsapuat/admin/scripts/adoacorectl.sh start
script returned:
****************************************************
ERROR : Timed out( 100000 ): Interrupted Exception
You are running adoacorectl.sh version 120.13
Starting OPMN managed OACORE OC4J instance  ...
****************************************************
From the log files:
12/06/06 07:58:08 WARNING: ApplicationLogManager is not installed, may result in loader leaks. Set -Djava.util.logging.manager=oracle.classloader.util.ApplicationLogManager
12/06/06 07:58:09 WARNING: Unable to access loaded classes.
12/06/06 07:58:11 WARNING: GC: Unable to access pending References.
12/06/06 07:58:11 WARNING: GC: Unable to access pending Reference lock.
Solution 1:
delete all .lock files from the below directory subtrees:
$INST_TOP/ora/10.1.3/j2ee/forms/persistence/forms_default_group_1/
$INST_TOP/ora/10.1.3/j2ee/oacore/persistence/oacore_default_group_1/
$INST_TOP/ora/10.1.3/j2ee/oafm/persistence/oafm_default_group_1/
Shutdown oacore, and remove all .lock files in the directory subtree of :
find $INST_TOP/ora/10.1.3/j2ee/forms/persistence/forms_default_group_1/ -name *.lock
find $INST_TOP/ora/10.1.3/j2ee/oacore/persistence/oacore_default_group_1/  -name *.lock
find $INST_TOP/ora/10.1.3/j2ee/oafm/persistence/oafm_default_group_1/ -name *.lock
Description: cid:image003.png@01CD43C8.D32E00A0
Restart using adstrtal.sh
Solution 2:
If not resolved, follow the below timeout workaround from Oracle:
The timeout value is defined in the $ORA_CONFIG_HOME/10.1.3/opmn/conf/opmn.xml file   There are three entries to be concerned about, one for each of the managed OC4J containers (oacore, forms and oafm).  The entry is shown below the appropriate "process-type id=" section and looks like shown below by default:-
<start timeout="600" retry="2"/>
Modifying the timeout value from "600" to "1800" may resolve the timeout error . You can only set it for entry “process-type id="oacore"”
or all entries giving timeout errors

Before:

ebsapuat(applts2):/app/oracle/product/applts2> grep 'start timeout' $ORA_CONFIG_HOME/10.1.3/opmn/conf/opmn.xml
               <start timeout="600"/>
               <start timeout="600" retry="2"/>
               <restart timeout="720" retry="2"/>
               <start timeout="600" retry="2"/>
               <restart timeout="720" retry="2"/>
               <start timeout="600" retry="2"/>
               <restart timeout="720" retry="2"/>
               <start timeout="600" retry="2"/>
               <restart timeout="720" retry="2"/>
               <start timeout="600" retry="2"/>
               <restart timeout="720" retry="2"/>
ebsapuat(applts2):/app/oracle/product/applts2>
After:
ebsapuat(applts2):/app/oracle/product/applts2> grep 'start timeout' $ORA_CONFIG_HOME/10.1.3/opmn/conf/opmn.xml
               <start timeout="1800"/>
               <start timeout="1800" retry="2"/>
               <restart timeout="720" retry="2"/>
               <start timeout="1800" retry="2"/>
               <restart timeout="720" retry="2"/>
               <start timeout="1800" retry="2"/>
               <restart timeout="720" retry="2"/>
               <start timeout="1800" retry="2"/>
               <restart timeout="720" retry="2"/>
               <start timeout="1800" retry="2"/>
               <restart timeout="720" retry="2"/>
ebsapuat(applts2):/app/oracle/product/applts2>

Solution 3:

Decrease the number of oacore processes started in the $CONTEXT_FILE to see if this is not maybe resource related, or as a result of the server running out of resources
You might need to look at the O/S parameters should it start with a reduced number of processes.

With this set, I got the “TIMEOUT” errors:

ebsapuat(applts2):/app/oracle/product/applts2/inst/apps/ebsts2_ebsapuat/appl/admin> grep nprocs $CONTEXT_FILE
         <frmsrv_nprocs oa_var="s_frmsrv_nprocs">1</frmsrv_nprocs>
         <forms_nprocs oa_var="s_forms_nprocs">3</forms_nprocs>
         <oacore_nprocs oa_var="s_oacore_nprocs">5</oacore_nprocs>
         <oafm_nprocs oa_var="s_oafm_nprocs">1</oafm_nprocs>
         <forms-c4ws_nprocs oa_var="s_forms-c4ws_nprocs">0</forms-c4ws_nprocs>
ebsapuat(applts2):/app/oracle/product/applts2/inst/apps/ebsts2_ebsapuat/appl/admin>


But after changing it to ths below, adoacorectl.sh started without any errors:

ebsapuat(applts2):/app/oracle/product/applts2/inst/apps/ebsts2_ebsapuat/appl/admin> grep nprocs $CONTEXT_FILE
         <frmsrv_nprocs oa_var="s_frmsrv_nprocs">1</frmsrv_nprocs>
         <forms_nprocs oa_var="s_forms_nprocs">1</forms_nprocs>
         <oacore_nprocs oa_var="s_oacore_nprocs">1</oacore_nprocs>
         <oafm_nprocs oa_var="s_oafm_nprocs">1</oafm_nprocs>
         <forms-c4ws_nprocs oa_var="s_forms-c4ws_nprocs">0</forms-c4ws_nprocs>
ebsapuat(applts2):/app/oracle/product/applts2/inst/apps/ebsts2_ebsapuat/appl/admin>


No comments:

SHRD0014: GLLEZL - process exiting with failure

  SYMPTOMS Journal Import completes with the following error: Error ------ ORA-01653 : unable to extend table GL.GL_IMPORT_REFERENCES ORA-01...