BF [2779124] OutOfMemoryError: PermGen space
*set -XX:MaxPermGen=128m
This commit is contained in:
parent
7a6db0484c
commit
bfb53b7fbb
|
@ -70,7 +70,7 @@ rem Add -server to the JVM options, if supported
|
||||||
if not errorlevel == 1 (set JAVA_OPTS=%JAVA_OPTS% -server)
|
if not errorlevel == 1 (set JAVA_OPTS=%JAVA_OPTS% -server)
|
||||||
|
|
||||||
rem JVM memory allocation pool parameters. Modify as appropriate.
|
rem JVM memory allocation pool parameters. Modify as appropriate.
|
||||||
set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m
|
set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m -XX:MaxPermGen=128m
|
||||||
|
|
||||||
rem With Sun JVMs reduce the RMI GCs to once per hour
|
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
|
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.
|
# Specify options to pass to the Java VM.
|
||||||
#
|
#
|
||||||
if [ "x$JAVA_OPTS" = "x" ]; then
|
if [ "x$JAVA_OPTS" = "x" ]; then
|
||||||
JAVA_OPTS="-Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000"
|
JAVA_OPTS="-Xms128m -Xmx512m -XX:MaxPermGen=128m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Sample JPDA settings for remote socket debuging
|
# Sample JPDA settings for remote socket debuging
|
||||||
|
|
Loading…
Reference in New Issue