java - How to set -xnohup option on JAVA_OPTIONS -


i've read these articles 1 , 2 need set -xnohup option on java_options when starting weblogic. in order avoid error

error

####<sep 7, 2012 3:14:20 pm ist> <notice> <weblogicserver> <ncorp-plm-08> <ncorp-plm-08-agileserver> <thread-1> <<wls kernel>> <> <> <1347011060768> <bea-000388> <jvm called wls shutdown hook. server force shutdown now>  ####<sep 7, 2012 3:14:20 pm ist> <alert> <weblogicserver> <ncorp-plm-08> <ncorp-plm-08-agileserver> <thread-1> <<wls kernel>> <> <> <1347011060768> <bea-000396> <server shutdown has been requested <wls kernel>> 

however can't find in setdomain.sh need place -xnohup. using oracle weblogic 12c , oracle linux. java version

java version "1.7.0_79" java(tm) se runtime environment (build 1.7.0_79-b15) java hotspot(tm) 64-bit server vm (build 24.79-b02, mixed mode) 

appreciate if can help.

update

i placed xnohup option on setdomain.sh encountered below error

unrecognized option: -xnohup 

from setdomainenv.sh added option in part of script.

java_properties="${java_properties} ${wlp_java_properties}" export java_properties  java_options="${java_options} ${java_properties} -xnohup" 

it seems problem not in parameters @ all. missed in articles that:

-xrs note: -xrs non-standard option in hotspot jvm. jrockit jvm continues support option; however, jrockit jvm nonstandard options -xnohup , -xx:+|-reducesignalusage provide same functionality.

it's more problem how weblogic started. seems start regular user terminal, logout. should kind of background process.


Comments

Popular posts from this blog

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

arrays - Algorithm to find ideal starting spot in a circle -

php - Autoloader issue not returning Class -