Skip to content

Instantly share code, notes, and snippets.

@horizon86
Last active November 7, 2024 13:28
Show Gist options
  • Save horizon86/e4fec2141e58cf7625976f8034a4824d to your computer and use it in GitHub Desktop.
Save horizon86/e4fec2141e58cf7625976f8034a4824d to your computer and use it in GitHub Desktop.
Minecraft auto backup 下面是回档脚本,注意更改为你自己的存档文件夹
#!/bin/bash
# 该脚本会关闭服务器进行备份,适用于在linux tmux中开服的童鞋
set -euo pipefail
# tmux 会话名字
sessionName=mc
# 服务器关闭警告信息
stopDelay=10
stopWarn=服务器将在${stopDelay}秒后关闭进行备份
# 存档位置
saveDir=world_1.16.5_survival*/
# 服务器启动脚本
startScript=1.18.2_survival.sh
# 备份位置
backupPath=bak
# 存档保留天数
backupDays=3
# 警告并关闭服务器
tmux send-keys -t ${sessionName} say Space ${stopWarn} Enter
sleep ${stopDelay}
tmux send-keys -t ${sessionName} stop Enter
echo 服务器关闭ing...
# 等待服务器关闭
sleep 30
# 开始备份
echo 开始备份...
if [ -z "${backupPath}" ]; then
tar -czf auto-backup-`date +%Y-%m-%d-%H-%M-%S`.tar.gz ${saveDir}
else
mkdir -p ${backupPath}
tar -czf ${backupPath}/auto-backup-`date +%Y-%m-%d-%H-%M-%S`.tar.gz ${saveDir}
fi
echo 备份完毕
# 删除旧存档
find ${backupPath} -mtime +${backupDays} -name "auto-backup-*.tar.gz" -exec rm {} \;
# 重启服务器
tmux send-keys -t ${sessionName} bash Space ${startScript} Enter
# 该脚本无需关闭服务器,但是要开启RCON,下面配置需自行修改。
from mctools import RCONClient, PINGClient, QUERYClient
import os
import time
HOST = '127.0.0.1'
PORT = 27896
RCON_PORT = 25575
RCON_PASS = 'PASS'
backupPath='bak'
saveDir='1.19.4_survival/'
backupMins=1440
workDir='/home/ubuntu/mc/paper/saves'
def main():
print(f'log时间: {time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime())}')
ping = PINGClient(HOST, PORT,proto_num=762)
rcon = RCONClient(HOST, RCON_PORT)
online = False
people = 0
try:
ping_stat = ping.get_stats()
online = True
people = ping_stat['players']['online']
except ConnectionRefusedError:
pass
if not online:
print('服务器不在线')
exit(0)
if people == 0:
print('没有人在线')
exit(0)
if rcon.login(RCON_PASS):
rcon.command('say 服务器开始不停机备份')
rcon.command('save-all flush')
rcon.command('save-off')
backupName=f'auto-backup-{time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime())}.tar.gz'
os.chdir(workDir)
os.system(f'tar -czf {backupPath}/{backupName} {saveDir}')
rcon.command('save-on')
rcon.command(f'say 不停机备份完成:{backupName}/maybe')
os.system(f'find {backupPath} -mmin +{backupMins} -name "auto-backup-*.tar.gz" -exec rm {{}} \\;')
rcon.stop()
else:
print('备份失败,无法连接rcon')
if __name__ == '__main__':
main()
#!/bin/bash
# 这个是回档脚本
read -p 请输入要恢复的存档: archive
set -v
tar -xzf $archive -C ../
set +v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment