Guest User

Untitled

a guest
Aug 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. #!/bin/sh
  2. BINDIR=$(dirname "$(readlink -fn "$0")")
  3. while true
  4. do
  5. java -Xmx16G -Xms1G -XX:+AlwaysPreTouch -XX:+DisableExplicitGC -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -XX:MaxGCPauseMillis=50 -XX:TargetSurvivorRatio=90 -XX:G1NewSizePercent=50 -XX:G1MaxNewSizePercent=80 -XX:InitiatingHeapOccupancyPercent=10 -XX:G1MixedGCLiveThresholdPercent=50 -XX:+AggressiveOpts -jar Spigot.jar
  6. echo "To stopping the server, press the key combination Ctrl + C!"
  7. echo "Reboot:"
  8. for i in 1
  9. do
  10. echo "$i..."
  11. sleep 1
  12. done
  13. echo "Reboot complete!"
  14. done
Add Comment
Please, Sign In to add comment