如何设置 MC 服务器每天早上 6 点重启并备份?

如何设置 MC 服务器每天早上 6 点重启并备份?

所以我有一个 Mineraft 服务器,我想设置它,让它在早上 6 点重启,并自行备份。我在屏幕要停止服务器,我必须打开屏幕(使用screen -r)并/stop在 MC 服务器控制台中运行。然后,我希望计算机自动将服务器世界文件复制到某个备份位置,可能使用 格式PATH/TO/DIRECTORY/worldBackupDD.MM.YY/。然后,脚本将运行sudo java -Xmx8G -Xms8G -jar /PATH/TO/DIRECTORY/server.jar nogui以在屏幕上重新启动服务器。

所以我想要做的是(早上 6 点)停止服务器,备份服务器,然后在屏幕上重新启动服务器。那么我该怎么做呢?我会使用 cron 吗?我真的不知道如何设置它或如何在 cron 中执行此操作。或者我会以其他方式执行此操作?任何帮助都将不胜感激。

(顺便说一下,服务器在 ubuntu server 18.04 上运行)

答案1

Cron 是一个方便的命令。man cron

crontab -e

# Edit this file to introduce tasks to be run by cron.
# 
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
# 
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').# 
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
# 
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
# 
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
# 
# For more information see the manual pages of crontab(5) and cron(8)
# 
# m h  dom mon dow   command

0 6 * * * /home/yourloginname/backup.sh

然后创建backup.sh

#!/bin/sh
command-which-stop-the-server
tar -zcf /PATH/TO/DIR/worldBackup`date "%D"`.tar /TARGET/DIR/
/PATH/TO/java -Xmx8G -Xms8G -jar /PATH/TO/DIRECTORY/server.jar nogui

注意:必须使用完整路径,如果需要由 root 执行,则必须以 root 用户身份运行 cron。
请参阅如何正确设置 root cron 任务

相关内容