author | Luke Hoersten <luke@hoersten.org> |
Sat, 16 Sep 2023 01:39:37 -0500 | |
changeset 223 | de03976c2df1 |
parent 178 | 0f99f298361d |
permissions | -rw-r--r-- |
19 | 1 |
[Unit] |
164
ae19501f5251
Updated minecraft to be multi-world and minimized world size.
Luke Hoersten <luke@hoersten.org>
parents:
156
diff
changeset
|
2 |
Description=Minecraft Server %I |
111
1c1a911b26aa
Made minecraft role support vanilla and paper forks.
Luke Hoersten <luke@hoersten.org>
parents:
108
diff
changeset
|
3 |
Documentation=https://minecraft.gamepedia.com/Tutorials/Setting_up_a_server |
19 | 4 |
After=network.target |
5 |
||
6 |
[Service] |
|
111
1c1a911b26aa
Made minecraft role support vanilla and paper forks.
Luke Hoersten <luke@hoersten.org>
parents:
108
diff
changeset
|
7 |
User={{minecraft_user}} |
1c1a911b26aa
Made minecraft role support vanilla and paper forks.
Luke Hoersten <luke@hoersten.org>
parents:
108
diff
changeset
|
8 |
Group={{minecraft_user}} |
164
ae19501f5251
Updated minecraft to be multi-world and minimized world size.
Luke Hoersten <luke@hoersten.org>
parents:
156
diff
changeset
|
9 |
WorkingDirectory={{minecraft_parent_dir}}/minecraft/%i |
19 | 10 |
Restart=on-failure |
11 |
RestartSec=20 5 |
|
178 | 12 |
ExecStart=/usr/bin/java -Xms{{minecraft_mem}} -Xmx{{minecraft_mem}} -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 -Dusing.aikars.flags=https://mcflags.emc.gs -Daikars.new.flags=true -jar server.jar nogui |
19 | 13 |
|
14 |
PrivateTmp=true |
|
15 |
ProtectSystem=full |
|
16 |
NoNewPrivileges=true |
|
17 |
PrivateDevices=true |
|
18 |
||
19 |
[Install] |
|
20 |
WantedBy=multi-user.target |