Avoiding Initial Memory Heap Size Error - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:49:54Zhttp://stackoverflow.com/feeds/question/909018http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/909018/avoiding-initial-memory-heap-size-error1Avoiding Initial Memory Heap Size Errorneversaint2009-05-26T05:11:32Z2009-05-26T08:07:45Z
<p>Hi all,</p>
<p>I run a Java code with the following command:</p>
<pre><code>$ java -Xms4G -Xmx4G myjavacode
</code></pre>
<p>My cpu's RAM capacity is 6GB.</p>
<p>However it always fail to execute giving me this
error message:</p>
<pre><code>Invalid initial heap size: -Xms5G
The specified size exceeds the maximum representable size.
Could not create the Java virtual machine
</code></pre>
<p>Is there any way to set up Java option so that we can
execute the code?</p>
http://stackoverflow.com/questions/909018/avoiding-initial-memory-heap-size-error/909086#9090863Answer by kgiannakakis for Avoiding Initial Memory Heap Size Errorkgiannakakis2009-05-26T05:52:52Z2009-05-26T05:52:52Z<p>You've exceeded the maximum heap size of your JVM. This is both JVM and OS dependent. In most 32-bit systems the maximum value will be 2Gb, regardless of the physical memory available.</p>
http://stackoverflow.com/questions/909018/avoiding-initial-memory-heap-size-error/909145#9091451Answer by Curt Sampson for Avoiding Initial Memory Heap Size ErrorCurt Sampson2009-05-26T06:16:20Z2009-05-26T06:16:20Z<p>Actually, the maximum memory size on 32-bit systems can vary, being anything up to 4 GB, but 2 GB is a common value. It's often possible to re-link your kernel to increase this to 3 or 3.5 GB. The issue, of course, is that you just don't have the address space to map more memory. Have you tried a 64-bit machine?</p>
<p>Also, remember to set your ulimit higher before you do this.</p>
http://stackoverflow.com/questions/909018/avoiding-initial-memory-heap-size-error/909514#9095141Answer by brianegge for Avoiding Initial Memory Heap Size Errorbrianegge2009-05-26T08:07:45Z2009-05-26T08:07:45Z<p>By default Java will run in 32 bit mode. Be sure to give it the -d64 option to put it into 64 bit mode. Once in 64-bit mode, you shouldn't have any trouble allocating a 6GB JVM.</p>