Friday, September 28, 2012

Process exiting status in Oracle Application R12

Issue:
======
a) Unable to launch the application or Home page hangs in Oracle Application Release R12
b) If you check the services on the web/Admin node, you can see process
ps -ef | grep -i exiting
- 647302 – - – exiting
- 708754 – - – exiting
- 925856 – - – exiting
- 983252 – - – exiting
- 1044536 – - – exiting
- 1134628 – - – exiting
- 1138768 – - – exiting
You can’t kill these process also
Only workaround is rebooting the box and start the services and it works fine.
This Issue will occur again after 2 weeks or less.
Application log error shows like below…….
java.io.IOException: Broken pipe
at sun.nio.ch.FileDispatcher.write0(Native Method)
at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:47)
at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:132)
at sun.nio.ch.IOUtil.write(IOUtil.java:103)
at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:329)
at java.nio.channels.Channels.write(Channels.java:74)
at java.nio.channels.Channels.access$000(Channels.java:61)
at java.nio.channels.Channels$1.write(Channels.java:148)
at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:306)
at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
at java.lang.Thread.run(Thread.java:797)
Cause:
=======
pid directories are placed on shared mount point.
Solution:
=========
a) Make sure all your pid variables are pointing to local disk in Context File…
s_lock_pid_dir
s_pids_dir
s_web_pid_file
b) Change in all the nodes and run Autoconfig.
Note:
It is always better to keep the $INST_TOP on local disk to avoid performance Issues.

No comments:

Post a Comment