Creating a schedule
- Click New Schedule.
- Give it a name (e.g.
Nightly restart). - Set the cron expression - minute, hour, day of month, month, day of week. The UI defaults to standard 5-field cron.
- Toggle Only when server is online if it shouldn’t run while stopped.
- Toggle Enabled when you’re ready for it to fire.
- Save.
Tasks
Open the schedule and add one or more tasks. Each task is one of:- Send command - push a string into the server console (e.g.
say Restarting in 5 minutes). - Send power action - start, restart, stop, or kill.
- Create backup - trigger a backup. Optionally pass an ignored-files list.
Common patterns
Nightly restart with warning
Nightly restart with warning
Cron:
0 4 * * * (every day at 04:00)- Send command -
say Restarting in 5 minutes - Wait 240 seconds
- Send command -
say Restarting in 60 seconds - Wait 60 seconds
- Send power action - restart
Hourly autosave (Minecraft)
Hourly autosave (Minecraft)
Cron:
0 * * * *- Send command -
save-all
Daily backup
Daily backup
Cron:
30 3 * * *- Create backup - ignore
logs/*andcache/*
Cron runs in UTC by default on Lumix Solutions nodes. If you need local time, calculate the offset or open a ticket to confirm your node’s timezone.

