Java: Error occurred during initialization of VM

Re: Java: Error occurred during initialization of VM

by clint welbar -
Number of replies: 0
Starting a JVM like below will start it with 256MB of memory, and will allow the process to use up to 2048MB of memory:

  java -Xmx2048m -Xms256m

More about...memory management

Clint