Wednesday, July 11, 2012
HTTP_Server status is Stop. Not able to restart it.
opmnctl startall command fails with error "Read-only file system"
On working with SOA Suite 10g on LINUX environment, I faced an error while trying to execute "opmnctl startall" command. Below error was thrown.
-bash-3.2$ ./opmnctl startall
opmnctl: starting opmn and all managed processes...
OPMN log file open failed: /apps/oracle/soa/opmn/logs/opmn.log (Read-only file system)
opmnctl: opmn start failed.
This is a LINUX issue. The permission on mount point "/apps/oracle" changed to "ro" from "rw".
Linux command "cat /proc/mounts" can be used to find out the current permission on mount point. The issue got resolved once the permission was reverted to "rw".
-bash-3.2$ ./opmnctl startall
opmnctl: starting opmn and all managed processes...
OPMN log file open failed: /apps/oracle/soa/opmn/logs/opmn.log (Read-only file system)
opmnctl: opmn start failed.
This is a LINUX issue. The permission on mount point "/apps/oracle" changed to "ro" from "rw".
Linux command "cat /proc/mounts" can be used to find out the current permission on mount point. The issue got resolved once the permission was reverted to "rw".
Monday, July 9, 2012
opmnctl command hang or does not respond back on linux
I have faced issue on LINUX machine where I was not able to run opmnctl commands such as opmnctl status, opmnctl startall, opmnctl stopall etc.
Each time I run any opmnctl command it gets hang and does not respond back.
On analysis I found that there were orphan opmnctl command which were blocking the new opmnctl commands execution.
Using ps (ps -ef | grep opmn/bin) command, I find out the process ID of the opmnctl commands and killed them using linux kill command.
On killing the opmnctl processes, the opmnctl commands started working.
Subscribe to:
Posts (Atom)