forked from Laskyyy/Create-Astral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartmc.sh
10 lines (9 loc) · 784 Bytes
/
startmc.sh
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
while [ true ]; do
echo "Starting server..."
java -Xms6G -Xmx6G -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 -jar server.jar --nogui
for i in 3 2 1; do
printf 'Server restarting in %s... (press CTRL-C to exit)\n' "${i}"
sleep 1
done
done