Language | File |
---|---|
English (US) | README.md |
简体中文 | README_zh_CN.md |
- I have no time to keep active development in this project.
- Only bug reporting issues will be accepted.
- So if you want some new features, just clone and work on the code. Note that this project is licensed under GPLv3.
Any PR is welcomed. Feel free to add your reasonable features, if you have written test cases for them.
I decided to discontinue my development in this project. There are some major reasons:
- As one of my toy projects, its code quality is not satisfying and refactoring takes too much effort. The git history is bad too.
- The Mod is proven to be working well (at least the latest version on my server, with Minecraft 1.16.5) as a basic backup and rollback tool for the game. All important features for a backup Mod are implemented.
- I need a tool which backs up the save to the filesystem on another computer, via network.
To solve these problems, I'm working on a new backup and rollback tool for Minecraft, which is based on rdiff-backup.
As a general incremental backup tool, it tends to be more solid and well-designed. Moreover, it is able to transfer backup files over network. Thus, I believe it is a good start point to reimplement an incremental backup Mod for Minecraft.
However, this tool is still a good choice for any Minecraft server (from 1.14.4 to 1.17.1) who wants to back up its world locally.
A server-only backup mod for fabric Minecraft server, which makes normal .zip
backup of your world, or
self-implemented incremental backup, with slower increasing disk usage.
Supported Minecraft version: 1.14.4, 1.15.2, 1.16.4/1.16.5, 1.17.1, 1.18.1, 1.19.2(active)
Fabric API is required!
- /rdiff or /rdiff help: show command list
- /rdiff list: show existing backups
- /rdiff backup full [backup_name]: make a backup with given name or with the current system time by default
- /rdiff backup incremental [backup_name]: make an incremental backup which will be saved in
incremental
folder. (Incremental backup will create an index file which has an ext name of.kbi
, and it will be saved inbackup
folder, which is the same with where.zip
resides) - /rdiff restore <backup_name>: restore to a certain backup. This command needs a confirmation to execute.
- /rdiff confirm: confirm executing restore operation. The operation is irreversible.
- /rdiff delete: delete an existing backup.
- /rdiff recent: Find and select the most recent backup file. After executing this command, you can use
/rdiff restore 1
to restore to this backup.
Only OPs can make backups and restore by default.
However, you can use permission management mods like LuckPerms to configure exactly what permissions normal players can use. Permission nodes of each command are listed below:
Command | Permission Required |
---|---|
/rdiff | rdiff.root |
/rdiff help | rdiff.help |
/rdiff list | rdiff.list |
/rdiff backup full | rdiff.backup |
/rdiff backup incremental | rdiff.backup |
/rdiff restore | rdiff.restore |
/rdiff delete | rdiff.delete |
/rdiff confirm | rdiff.confirm |
/rdiff cancel | rdiff.cancel |
/rdiff recent | rdiff.recent |
Due to the nature of JVM: the Java language's running environment, there is no elegant way to restart Minecraft server in a server plugin. In order to auto restart after restoring, an outer system-based script is required, i.e. a batch or a shell script.
Rdiff Backup exit JVM with a special code 111
after restoring the level successfully. The startup script just check the
exit code and restart Minecraft server if the code is 111
.
I will give examples for some popular operating systems. To use these scripts, you should replace your start.bat or start.sh script with given code lines.
@echo off
title Keuin's personal Minecraft server
:loop
java -Xms4G -Xmx4G -jar fabric-server-launch.jar nogui
if %errorlevel%==111 goto loop
rem kbackup restore auto restart
pause
#!/bin/sh
STATUS=111
while [ $STATUS -eq 111 ]
do
java -Xms4G -Xmx4G -jar fabric-server-launch.jar nogui
STATUS=$?
done
Currently Rdiff Backup does not support automatic backup by itself. However, If application level scheduled tasks are available to you, such as crontab in Linux and Task Scheduler in Windows, you can use that to trigger backup tasks regularly.
In order to run Minecraft command on your server as a Shell command, you need RCON client like mcrcon. You can get the binary executable from its homepage and put it into anywhere like /usr/bin
.
Let's assume you are under Linux, run crontab -e
and append this line to the configuration:
0 */6 * * * mcrcon -P <RCON port> -p <RCON password> "kb backup full"
You can specify RCON port and password in server.properties
.
This will cause cron
to run /rdiff backup full
for every 6 hours. To make incremental backups, simply replace full
to incremental
.
The man page crontab(5) also contains many useful information about using cron.
For Windows users, please refer to tutorials available on Google for creating scheduled tasks. Note that mcrcon is also available on Windows.
- A more friendly help menu (colored command help menu)
- New version checker
- Code refactor for maintainability
- Decoupling of plugin core and fabric api (preparing for Bukkit version)