# Install dependencies
sudo yum install -y java-1.8.0-openjdk screen
# Create a new unprivileged user for minecraft
useradd -r -m -d /opt/minecraft minecraft
# Create the directory that will house our minecraft instances
sudo su --shell /bin/bash minecraft
mkdir instances
exit
# Copy the [email protected] file into the correct place.
sudo vi /etc/systemd/system/[email protected]
# Reload systemd units
sudo systemctl daemon-reload
# Sudo into the minecraft user's shell
sudo su --shell /bin/bash minecraft
# Move into the instances directory
cd instances
# Create a new folder to house your instance
mkdir server1
# Install your minecraft instance, and make sure there is a minecraft_server.jar file.
# If you use Forge servers, you can use the following:
ln -s forge*.jar minecraft_server.jar
# Start and enable (start after boot) the server.
sudo systemctl start minecraft@server1
sudo systemctl enable minecraft@server1
Hey, love the example service. I would suggest one edit. As it stands, once the last command is run when stopping the service
ExecStop=/usr/bin/screen -p 0 -S mc-%i -X eval 'stuff "stop"\015'
, systemd will consider the process completed and kill any processes remaining. This is bad since it kills screen the moment after it's told to type stop in the MC console. This means the server never has a chance to properly stop, since it is immediately killed along with screen.I would recommend adding
KillMode=none
to somewhere under the [Service] section to stop systemd from killing anything by itself so the server has a chance to gracefully shutdown. Screen will still terminate itself when java exitsMy only concern is systemd will consider the process ended after sending the stop command though, so linux may still shutdown before the server is shutdown, but I'm not too concerned about that because I haven;t done a lot of testing in that case yet