Posts

Showing posts from April, 2007

Increase JVM memory in Linux

You can increase the JVM memory for better performance if your system has sizeable free memory export JAVA_OPTS="-Xms 128m -Xmx 128m -server -Djava.net.preferIPv4Stack=true" You can make it permanent by configuring at .bashrc or .profile Activate with source ~/.bashrc source ~/.profile