unable to set xmx beyond 4gb on system having 8gb RAM

Posted by Arun on Super User See other posts from Super User or by Arun
Published on 2012-04-12T03:52:22Z Indexed on 2012/04/12 5:34 UTC
Read the original article Hit count: 238

Filed under:
|
|

I need to set

ANT_OPTS=-Xms1024m -Xmx6144m -XX:PermSize=1024m -XX:MaxPermSize=1024m

JAVA_OPTS=-Xms1024m -Xmx6144m -XX:PermSize=1024m -XX:MaxPermSize=1024m

I have a system with 8gb(recently upgraded from 4 gb)

But once i set the ant opts to above said value I am not able to run any of my ant targets and I get the following error

[ERROR] Argument error: -Xmx6144m
[ERROR] Specified maximum heap size (6144 MB) is larger than the address space on this platform (4 GB).
[WARN ] -XX:PermSize=1024m is not a valid VM option. Ignoring
[WARN ] -XX:MaxPermSize=1024m is not a valid VM option. Ignoring
Could not create the Java virtual machine.

This indicates the Java that I have on my system

java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Oracle JRockit(R) (build R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_64, compiled mode)

and I am running a Windows 7 on Intel Core 2 duo 3Ghz processor and 8gb RAM

Any pointers in solving this issue would be of great help.

PS: I did google for the error and it was one of my 1st such occurence where I didnot get any links pointing to the specific solution. Maybe no one has encountered such a scenario

© Super User or respective owner

Related posts about Windows

Related posts about java