Created
March 11, 2020 02:39
-
-
Save islands04/d128d0c3b1e185982507b489748d5180 to your computer and use it in GitHub Desktop.
Minecraft Systemd Service Unit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] Description=Minecraft Bedrock Service After=network.target [Service] Type=Simple Environment="LD_LIBRARY_PATH=/opt/minecraft/bedrock-server" WorkingDirectory=/opt/minecraft/bedrock-server ExecStart=/opt/minecraft/bedrock-server/bedrock_server TimeoutStopSec=20 Restart=on-failure StandardOutput=append:/var/log/minecraft-bedrock-stdout.log StandardError=append:/var/log/minecraft-bedrock-stdout.log [Install] WantedBy=multi-user.target [Unit] | |
Description=Minecraft Bedrock Service | |
After=network.target | |
[Service] | |
Type=Simple | |
Environment="LD_LIBRARY_PATH=/opt/minecraft/bedrock-server" | |
WorkingDirectory=/opt/minecraft/bedrock-server | |
ExecStart=/opt/minecraft/bedrock-server/bedrock_server | |
TimeoutStopSec=20 | |
Restart=on-failure | |
StandardOutput=append:/var/log/minecraft-bedrock-stdout.log | |
StandardError=append:/var/log/minecraft-bedrock-stdout.log | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment