Guides
How to Back Up Your Minecraft Server (And Why You Must)
March 26, 2026·5 min read

How to Back Up Your Minecraft Server
It's not if you'll need a backup — it's when. Crashes, corruption, griefing, bad plugin updates — any of these can destroy months of work.
What to Back Up
- world/ folders (overworld, nether, end)
- plugins/ (configs and data)
- server.properties
Method 1: Plugin (Easiest)
DriveBackupV2 — Automatically backs up to Google Drive, OneDrive, or Dropbox. Set a schedule (every 6 hours), and backups upload to cloud storage automatically. Off-server storage means you're protected even if the machine is compromised.
Method 2: Script
For more control, use a bash script with cron:
- Send `save-all` and `save-off` to the server
- Compress world and plugins into a tar.gz
- Send `save-on`
- Delete backups older than 7 days
Method 3: Host Backups
Most hosts include automatic backups. Don't rely solely on these — download copies locally too.
Backup Strategy
Follow the 3-2-1 rule:
- 3 copies of data
- 2 different storage types
- 1 off-site backup
Restoring
- Stop the server
- Rename current world folder (don't delete yet)
- Extract backup
- Start server and verify
- Delete old folder once confirmed
Key Mistakes to Avoid
- Never having tested a restore
- Only keeping 1 backup
- Backing up to the same disk as the server