Skip to content

Instantly share code, notes, and snippets.

@shubhamkumar13
Created September 27, 2021 21:41
Show Gist options
  • Save shubhamkumar13/2311f35d1cc89651b2abb1c8503e45e1 to your computer and use it in GitHub Desktop.
Save shubhamkumar13/2311f35d1cc89651b2abb1c8503e45e1 to your computer and use it in GitHub Desktop.
example service to make services
# /etc/systemd/system/minecraft-server.service
[Unit]
Description=Minecraft Server
[Service]
WorkingDirectory=/root/minecraft-server
ExecStart=/usr/bin/java -Xmx6G -Xms4G -jar /root/minecraft-server/server.jar nogui
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment