Previous Topic: Java Virtual Machine Out-of-memory Errors

Next Topic: JXplorer to Java CS Connection Parameters

Edit JVM Memory Options on UNIX

To edit JVM options on UNIX, (for example, a basic 64-bit solaris configuration with low memory) create a file named jvm_options.conf in the data folder with the following Java arguments:

-Xms128M -Xmx192M -d64 
-Xms

Specifies the minimum heap memory allowed for the Java CS

Example: -Xms128M, specifies the minimum heap memory allowed for the Java CS is 128 MB.

-Xmx

Specifies the maximum heap memory allowed for the Java CS.

Example: -Xmx192M, specifies the maximum heap memory allowed for the Java CS is 192 MB.

-d64

Specifies that the JVM is run in a 64 bit environment.

Note: For more information, see the documentation for the Java command tool at http://java.sun.com