From fcbf1c073d90c09e27b2ba69ca62b89ad6e1b063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 12 Oct 2016 20:26:34 +0200 Subject: Add systemd service example --- miscellaneous/systemd.service | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 miscellaneous/systemd.service diff --git a/miscellaneous/systemd.service b/miscellaneous/systemd.service new file mode 100644 index 0000000..ba24ea1 --- /dev/null +++ b/miscellaneous/systemd.service @@ -0,0 +1,19 @@ +# Move this file to /etc/systemd/system and rename it to something like mc.service +[Unit] +Description=Minecraft server + +[Install] +WantedBy=multi-user.target +After=netwotk-online.target + +[Service] +# Change this to your real user, under which Minecraft server will be executed or create minecraft user. +User=minecraft +# Update this path to directory where server will be hosted +WorkingDirectory=~ +# Change any argument here and name of downloaded executable +ExecStart=mcwrapper -spv java -Xmx1024M -Xms1024M -jar MinecraftServer.jar +# If Minecraft server is most important thing on your server, make it less nice to other processes +Nice=-5 +# When server falls, it is automatically restarted +Restart=always -- cgit v1.2.3