Skip to content

Instantly share code, notes, and snippets.

@josdem
Last active April 10, 2017 17:32
Show Gist options
  • Save josdem/f7cfacac0eeb4439f5cf947eb606636c to your computer and use it in GitHub Desktop.
Save josdem/f7cfacac0eeb4439f5cf947eb606636c to your computer and use it in GitHub Desktop.
//Find out your Java heap memory size
java -XX:+PrintFlagsFinal -version | grep -iE 'HeapSize|PermSize|ThreadStackSize'
//Uninstall openjdk Debian
sudo apt-get purge openjdk-\*
//Uninstall openJDK RedHat
sudo yum remove java*-openjdk*
//Increace Heap Memory using jar
java -Xmx1g -jar {JAR_FILE}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment