Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
446 views

Duplicated Java runtime options : what is the order of preference?

Considering the following command line java -Xms128m -Xms256m myapp.jar Which settings will apply for JVM Minimum memory (Xms option) : 128m or 256m ?
2
votes
2answers
77 views

What is the significance of '-client' for JAVA_OPTS

I am not an expert on JAVA_OPTS, but I am getting an error in my grails app related to Permgen space. Now I receive a recommendation from grails blog to set JAVA_OPTS to this value: ...
0
votes
0answers
38 views

Setting java_opts to tomcat service from command line

I have a tomcat7 service running on windows, Usually in order to configure the Java options I go to Tomcat 7.0\bin\tomcat7w.exe and there in java tab, in java options I print the definition I want, ...
0
votes
1answer
29 views

Tomcat Manager: Specific JAVA_OPTS for each webapp

On an Ubuntu Server 10.04 I have Tomcat6 installed. Additionally the Tomcat Manager is installed. Now there are 3 WAR-files containing different web applications. When I upload any of these WAR-files ...
0
votes
0answers
66 views

What will be the priority parameter?

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 ...
0
votes
1answer
330 views

Why does jruby complain about valid java_opts

I have set my java min/max heap size to be the same as outlined in the Sun Docs for precise heap sizing using the following: -Xms768m -Xmx768m This works fine when I start tomcat, but if I run ...