Skip to content

Instantly share code, notes, and snippets.

@TehBrian
Last active July 3, 2020 20:56
Show Gist options
  • Save TehBrian/818987bc222d7d3d4f4f301e0602e904 to your computer and use it in GitHub Desktop.
Save TehBrian/818987bc222d7d3d4f4f301e0602e904 to your computer and use it in GitHub Desktop.
Minecraft Server debug script.
#!/bin/sh
echo Debug script activated!
cd "$( dirname "$0" )"
RAM=3G
SERVER_JAR=server.jar
DEBUG_PORT=30024
# Line below uses Aikar's flags. Keep it updated.
# Debug is for IntelliJ Java 9+
java -Xms$RAM -Xmx$RAM -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 -Dusing.aikars.flags=https://mcflags.emc.gs -Daikars.new.flags=true -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 -jar $SERVER_JAR nogui
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment