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".
No comments:
Post a Comment