• 欢迎加入MineBBS QQ讨论群:点击查看所有的官方讨论群
  • 我们将于近期对服务器进行迁移,服务可能中断至多2日。请各位安排好自己的访问计划,造成不便敬请谅解!
  • MineBBS入站考试已经上线!想要成为【正式会员】解锁更多功能吗?快来参与吧!【点我去看】
QuickBackup - 稳定易用、高性能,支持定时备份的BDS存档热备份插件

LSE QuickBackup - 稳定易用、高性能,支持定时备份的BDS存档热备份插件 1.2.1

请登录后获取
[MD] # QuickBackup ![Designer](https://github.com/heyhey123-git/QuickBackup/assets/156066831/87242648-35a6-4f0e-9cdd-41150c8fc6e8) # README.md - en [English](readme/README.en.md) - zh_CN [简体中文](../README.md) **Introduction** This plugin runs on a **BDS server** that utilizes **levilamina/LiteloaderBDS**. It helps you perform secure hot backups of your server, ensuring that your archives are never lost. Additionally, it provides a convenient scheduling system, eliminating the need for separate tools to manage timed executions. **Dependencies** This plugin relies on **legacy-script-engine-nodejs**. Before installing this plugin, please install **legacy-script-engine-nodejs** from: [here](https://github.com/LiteLDev/LegacyScriptEngine). **Installation** ### Download by release(Recommended) For **levilamina**, simply extract the plugin's compressed package and place it in the plugin folder as shown below: [IMG]https://img2.imgtp.com/2024/04/06/sIynJVfP.webp[/IMG] For **LiteloaderBDS**, change the plugin's file extension to `.llplugin` and directly place it in the server's `plugins` folder. After completing these steps, don't forget to restart the server. ### Installation by Lip ```bash lip install github.com/heyhey123-git/[EMAIL]QuickBackup@1.2.0[/EMAIL] ``` **Usage** This plugin registers the top-level command `/backup` for quick and efficient backup task management. Let's explain how to use the commands: 1. When no parameters are provided, using this command will immediately create an archive backup in your specified target folder. 2. `/backup [add] <cronExpression: string> <scheduleName: string>` - `add`: Enumerated option indicating the addition of a backup task. - `cronExpression`: Any valid [cron expression](#cron) specifying the execution time for the task. When the specified time arrives, an archive backup will be automatically created in your designated target folder. - `scheduleName`: The name of the task, used to differentiate between different tasks. - Example: `/backup add "0 0 12 * * ?" test` adds a backup task named "test" that executes daily at 12:00. The server will automatically read the task list from `schedule.json` upon startup, eliminating the need to add tasks every time you enter the server. 3. `/backup [query|cancel] [actionName: string]` - `query`: Enumerated option for querying tasks. - `cancel`: Enumerated option for canceling tasks. - `actionName`: The name of the task to operate on. - When using `query` to retrieve tasks without specifying a task name, all tasks will be returned. - Similarly, when using `cancel` to cancel tasks without specifying a task name, all tasks will be canceled. **Configure File** After starting the server, a configuration file will be automatically generated at `./plugins/QuickBackup/config/config.json` (usually relative to the directory where the BDS server executable is located). Any modifications made to this file will require a server restart to take effect: ```jsonc { "language": "zh_CN", // Language. The same name as the json file in /lang "BDSpath": "./worlds/Bedrock level", // Your BDS archive path. "targetPath": "./backup/", // The target folder where you save backups "maxRetainDays": 7, // Maximum number of days to retain backup archives "TimeOutSecond": 300, // Abort backup if it exceeds the specified time. Unit: seconds "backupType": "7z", // Compression formats supported: 7z, zip, tar and other formats that supported by 7-zip. "compression level":1,// from 1 to 9 in ascending order, 1 is recommended. "threads": 1//Number of computer threads used for compression. } ``` <br/><br/> <span id="cron"><h1>Introduction to Cron expressions</h1></span> A cron expression is a string comprising five or six fields separated by white space that represents a set of times, normally as a schedule to execute some routine. ```bash # ┌───────────── minute (0–59) # │ ┌───────────── hour (0–23) # │ │ ┌───────────── day of the month (1–31) # │ │ │ ┌───────────── month (1–12) # │ │ │ │ ┌───────────── day of the week (0–6) (Sunday to Saturday; # │ │ │ │ │ 7 is also Sunday on some systems) # │ │ │ │ │ # │ │ │ │ │ # * * * * * <command to execute> ``` You can click here to see the specific introduction: [click me](https://www.baeldung.com/cron-expressions) [/MD]
后退
顶部 底部