JBoss MaxPermGen java options problem with new Java spec (subject to change).
https://sourceforge.net/forum/message.php?msg_id=7281143 BF [2779124]
This commit is contained in:
parent
ed8bf3bc0a
commit
185c19e8b2
|
@ -70,7 +70,7 @@ rem Add -server to the JVM options, if supported
|
|||
if not errorlevel == 1 (set JAVA_OPTS=%JAVA_OPTS% -server)
|
||||
|
||||
rem JVM memory allocation pool parameters. Modify as appropriate.
|
||||
set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m -XX:MaxPermGen=128m
|
||||
set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m -XX:MaxPermSize=128m
|
||||
|
||||
rem With Sun JVMs reduce the RMI GCs to once per hour
|
||||
set JAVA_OPTS=%JAVA_OPTS% -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
# Specify options to pass to the Java VM.
|
||||
#
|
||||
if [ "x$JAVA_OPTS" = "x" ]; then
|
||||
JAVA_OPTS="-Xms128m -Xmx512m -XX:MaxPermGen=128m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000"
|
||||
JAVA_OPTS="-Xms128m -Xmx512m -XX:MaxPermSize=128m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000"
|
||||
fi
|
||||
|
||||
# Sample JPDA settings for remote socket debuging
|
||||
|
|
Loading…
Reference in New Issue