ForgeAutoShutdown is a server-only mod that can:
- Schedule the server to automatically shut down at a specific time of day, or after X hours and minutes of uptime. This allows the server to be automatically restarted by a shell script, Windows batch file or service.
- Allow players to vote for a manual shutdown, so a lagged out server does not require admin intervention
- Shutdown or kill a server that is hung (stalled) or laggy
- Minecraft Forge server for...
- 1.7.10, at least 10.13.4.1448
- 1.8, at least 11.14.3.1450
- A wrapper script, if server intends to restart after shutdown
- Download the latest release JAR or clone this repository & build a JAR file
- Place the JAR file in the
mods/
directory of the server - Run/restart the server
- Open
config/ForgeAutoShutdown.cfg
and modify configuration to desired values - Restart the server for changes to take effect
Any of these features may be disabled in the config
ForgeAutoShutdown will log a message at the INFO level on server startup, with a date and time of the next scheduled shutdown. For example:
[10:50:09] [Server thread/INFO] [ForgeAutoShutdown]: Next automatic shutdown: 08:30:00 19-June-2015
If this message is missing, the mod has not been correctly installed or the schedule is disabled in config. If the mod is installed on a Minecraft client, it will log an ERROR to the console and not perform any function. It will not crash or disable the client.
By default, the shutdown will be scheduled to happen at a specific time of day. This is the time local to the server and will always happen within the next 24 hours after server startup. This means that if the server starts and has missed the shutdown time even by a few minutes, it will schedule for the next day.
Alternatively, setting Uptime
to true means the server can shutdown after a specific
amount of hours or minutes instead. This can allow the server to restart multiple times a
day, or after a few days, etc.
By default a scheduled shutdown will give a warning to all players, each minute for five
minutes, after the scheduled time. This can be disabled by setting Warnings
to false
.
This means the server will shutdown, without warning, by the scheduled time.
If desired, the shutdown can be delayed by a configurable amount if players are still on
the server. To enable this, set Delay
to true and adjust DelayBy
to the amount of
minutes to delay.
The shutdown will be repeatedly delayed until the server is empty. When checking if the server for players, fake players (e.g. BuildCraft's quarry) are excluded. Note that shutdown warnings are ineffective with delays, and a pending shutdown will be cancelled if a player comes online during the countdown.
If enabled, players may vote a manual shutdown. To do so, a player must execute
/shutdown
. Then, all players (including the vote initiator) must vote using
/shutdown yes
or /shutdown no
.
If the amount of no
votes reach a maximum threshold, the vote fails. If a vote is cast
and too many players have disconnected in the meantime, the vote fails. If a vote fails,
another one will not be able to start until a configured amount of minutes has passed.
If the vote succeeds, the server will instantly shutdown without warning. If an appropriate means of automatic restart is in place, it should be expected that the server will go up within a few minutes.
If enabled, a watchdog thread can periodically watch the server for unresponsiveness. By default, it checks every 10 seconds:
- Whether the server is hanging (or "stalling") on a tick
- Whether the TPS stays below a certain amount for a certain length of time
If either problem is detected, the watchdog will try a soft kill (or a hard kill, if configured). This makes the server try to save all its data before shutting down. If a soft kill takes longer than ten seconds, the watchdog will do a hard kill.
- Gradle installation with gradle binary in PATH. Unlike the source package provided by Forge, this repository does not include a gradle wrapper or distribution.
Simply execute gradle setupCIWorkspace
in the root directory of this repository. Then
execute gradle build
. If subsequent builds cause problems, do gradle clean
.
ForgeAutoShutdown makes use of DEBUG
and TRACE
logging levels for debugging. To enable
these messages, append this line to the server's JVM arguments:
-Dlog4j.configurationFile=log4j.xml
Then in the root directory of the server, create the file log4j.xml
with these contents:
<?xml version="1.0" encoding="UTF-8"?>
<Configuration monitorInterval="5">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="[%d{HH:mm:ss} %-4level] %logger{36}: %msg%n"/>
</Console>
</Appenders>
<Loggers>
<Root level="INFO">
<AppenderRef ref="Console"/>
</Root>
<Logger name="ForgeAutoShutdown" level="ALL" additivity="false">
<AppenderRef ref="Console"/>
</Logger>
</Loggers>
</Configuration>