Showing posts with label weblogic. Show all posts
Showing posts with label weblogic. Show all posts
Top posts of 2012
Ozzie
This year's posts with the most views were the following:
- Sharepoint 2010: BCS Login failed for user "NT AUTHORITY\ANONYMOUS LOGON"
- Sharepoint 2010: create new list items using pure javascript
- Test open network ports using Powershell
- Google Drive on Ubuntu Linux
- Windows 8 activation error: DNS name does not exist
- Weblogic Server Unexpectedly Shuts Down
Thank you all for following, hope to keep up next year!
3:57 PM
Google
,
linux
,
Powershell
,
sharepoint
,
ubuntu
,
weblogic
,
windows
Weblogic Server Unexpectedly Shuts Down
Ozzie
Doing some research on the Web I got to this official Oracle documentation where it’s stated that the JVM listens to the following inputs from the host operating system:
- CTRL_C_EVENT
- CTRL_CLOSE_EVENT
- CTRL_LOGOFF_EVENT
- CTRL_SHUTDOWN_EVENT
The solution to prevent the Weblogic server from shutting down is to reduce the use of operating system signals by the JVM. This is done by adding the “-Xrs” option to the JAVA_OPTIONS variable on your script to start the Weblogic server.
In our case, using Weblogic 10.3 on a RHEL server, we modified the domain script “startWebLogic.sh” to include the “-Xrs” option:
JAVA_OPTIONS = “${JAVA_OPTIONS} –Xrs”
Afterwards, we stopped the Weblogic domain, restarted it and it stopped forcing the shutdown, even after the user logoff.
Subscribe to:
Posts
(
Atom
)