How can I change the memory heap size settings of JVM in Netscape Application Server (version 3.6)?
Created May 14, 2012
Luigi Viggiano You can change the shell script specifying those params:
java -Xms64m -Xmx512m
where
-Xms<size> specifies the initial Java heap size and
-Xmx<size> the maximum Java heap size.