Skip to content

Instantly share code, notes, and snippets.

@TheMatt2
Created December 24, 2021 01:28
Show Gist options
  • Save TheMatt2/5ad1edb9841fa728ae3e4e8f0f8bd8f7 to your computer and use it in GitHub Desktop.
Save TheMatt2/5ad1edb9841fa728ae3e4e8f0f8bd8f7 to your computer and use it in GitHub Desktop.
#!/bin/bash
JAVA="java"
JAR="paper-1.18.1-101.jar"
RAM="2000M"
FLAGS="-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 -Daikars.new.flags=true -Dusing.aikars.flags=https://mcflags.emc.gs"
echo "Starting server..."
${JAVA} -Xmx${RAM} -Xms${RAM} ${FLAGS} -jar ${JAR} --nogui
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment