If you define your JAVA_OPTS as such

JAVA_OPTS: -Dprogram.name=run.sh -server -Xms2048m -Xmx4096 -server -Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.net.preferIPv4Stack=true

What would be the priority -Xms and -Xmx parameter? The larger 1st one or the last one?

Thanks,

link|improve this question

40% accept rate
The -server parameter is independent of the -Xms and -Xmx parameters, which is what it looks like you're really asking about. But why not try it and see for yourself? – Matt Ball May 17 '11 at 3:14
Hi Sorry. Yes, I'm referring to duplicate runtime options (will edit it). I need to increase the current Xms and Xmx via the run.sh file. JAVA_OPTS="-Dprogram.name=$PROGNAME -server -Xms2048m -Xmx4096 -Xincgc $JAVA_OPTS" However when I add it, it does not remove the original setting. That's why I wanted to know the order of preference. Thank you. – ASC May 17 '11 at 7:43
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.