framework/script/server.sh

86 lines
2.2 KiB
Bash
Raw Normal View History

2020-04-16 19:08:07 +00:00
#!/bin/sh
2020-08-02 13:39:00 +00:00
# The alive checker and Minecraft server is started at the same time
2020-04-16 19:08:07 +00:00
PATH="$HOME/framework/vendor/java/bin/:$PATH"
2020-08-02 13:39:00 +00:00
# Dump classes
java -Xshare:dump
2020-04-16 19:08:07 +00:00
# Make sure we're in the server folder, located in the home directory
cd ~/server/
while true; do
2022-04-09 11:37:18 +00:00
# Check if the server is stuck in a crash loop, and reset worlds if this is the case
# The alive checker resets server_stops.log if the server runs long enough
stop_log_file=server_stops.log
if [ -f "$stop_log_file" ] && [ "$(wc -l < $stop_log_file)" -gt 3 ]; then
rm -rf worlds/ plugins/FastAsyncWorldEdit/clipboard/ plugins/FastAsyncWorldEdit/history/
rm "$stop_log_file"
fi
# Make certain files and folders read-only
2020-12-12 18:35:51 +00:00
mkdir debug/ dumps/ plugins/update/
chmod -R 500 debug/ dumps/ plugins/bStats/ plugins/PluginMetrics/ plugins/update/
2020-12-12 18:35:51 +00:00
chmod 500 plugins/
chmod 400 bukkit.yml
chmod 400 commands.yml
chmod 400 eula.txt
chmod 400 paper.yml
chmod 400 permissions.yml
chmod 400 server-icon.png
chmod 400 server.properties
chmod 400 spigot.yml
chmod 400 wepif.yml
# Start alive checker
dtach -n alivecheck ~/framework/script/alivecheck.sh
# Start Minecraft server
2020-08-02 12:17:00 +00:00
java \
2022-05-21 16:37:07 +00:00
-Xms1700M \
2021-04-10 12:25:45 +00:00
-Xmx1700M \
2022-05-21 16:37:07 +00:00
-XX:+UseG1GC \
-XX:+ParallelRefProcEnabled \
-XX:MaxGCPauseMillis=200 \
-XX:+UnlockExperimentalVMOptions \
-XX:+DisableExplicitGC \
-XX:+AlwaysPreTouch \
-XX:G1HeapWastePercent=5 \
-XX:G1MixedGCCountTarget=4 \
-XX:G1MixedGCLiveThresholdPercent=90 \
-XX:G1RSetUpdatingPauseTimePercent=5 \
-XX:SurvivorRatio=32 \
-XX:+PerfDisableSharedMem \
-XX:MaxTenuringThreshold=1 \
-XX:G1NewSizePercent=30 \
-XX:G1MaxNewSizePercent=40 \
-XX:G1HeapRegionSize=8M \
-XX:G1ReservePercent=20 \
-XX:InitiatingHeapOccupancyPercent=15 \
2020-08-02 12:17:00 +00:00
-Xss8M \
2020-08-02 17:14:02 +00:00
-XX:MaxDirectMemorySize=512M \
2022-05-21 16:37:07 +00:00
-Xshare:on \
2020-08-02 12:17:00 +00:00
-XX:+UseContainerSupport \
2022-05-21 16:37:07 +00:00
-XX:-UsePerfData \
2020-08-02 12:17:00 +00:00
-DPaper.IgnoreJavaVersion=true \
-Dpaper.playerconnection.keepalive=360 \
-DIReallyKnowWhatIAmDoingISwear \
2022-05-21 16:37:07 +00:00
-Dusing.aikars.flags=https://mcflags.emc.gs \
-Daikars.new.flags=true \
2020-08-02 12:17:00 +00:00
-jar server.jar nogui
# Stop alive checker (will be started again on the next run)
pkill -9 alivecheck.sh
2022-04-09 11:37:18 +00:00
echo $(date) >> "$stop_log_file"
# Ensure we don't abuse the CPU in case of failure
2020-04-16 19:08:07 +00:00
sleep 1
done