Skip to main content
Backups allow you to save snapshots of your server files for safekeeping. You can restore backups to recover from data loss, corruption, or mistakes.

Creating a Backup

Create a new backup of your server:
Create Backup
Response
1

Navigate to Backups

Go to the Backups tab in your server panel.
2

Start Backup

Click “Create Backup” and optionally provide a name.
3

Configure Ignored Files

Specify files/folders to exclude (logs, caches, etc.) to reduce backup size.
4

Wait for Completion

The backup runs in the background. Monitor progress in the backups list.

Backup Process

  1. Wings daemon creates a tar.gz archive of server files
  2. Excluded files are skipped based on ignore patterns
  3. Archive is stored locally or uploaded to S3 (based on config)
  4. Checksum is calculated for integrity verification
  5. Backup marked as successful when complete
Backups run in the background and don’t interrupt server operation. Large servers may take several minutes.

Ignoring Files

Exclude files from backups to save space and time:
Example Ignored Files
Patterns use standard glob syntax:
  • *.log - All .log files
  • cache/ - Entire cache directory
  • **/temp/* - Temp directories at any level
Be careful not to exclude important files. When in doubt, include it in the backup.

Listing Backups

View all backups for a server:
List Backups
Response

Backup Status

  • is_successful: false, completed_at: null - In progress
  • is_successful: true, completed_at: set - Completed successfully
  • is_successful: false, completed_at: set - Failed

Downloading Backups

Get a download link for a backup:
Get Download URL
Response
For S3-stored backups:
S3 Backup
Download URLs are valid for 15 minutes. Generate a new URL if it expires.

Download via cURL

Restoring Backups

Restore a backup to your server:
Restore Backup
Success
Restoring a backup with truncate: true deletes all existing server files before extracting the backup. This cannot be undone.

Restore Options

Truncate Mode (Clean Restore)

Deletes all files, then extracts backup. Use for full server restoration.

Merge Mode

Extracts backup over existing files. Existing files not in backup are kept.
1

Confirm Restoration

Ensure you want to restore. This will change server files.
2

Server Goes Offline

The server status changes to restoring_backup and becomes inaccessible.
3

Files Extracted

Wings extracts the backup archive to the server directory.
4

Server Available

Status returns to normal when restoration completes. Start the server.

Restoration Requirements

  • Server must not be installing or suspended
  • Backup must be completed successfully
  • Server will be inaccessible during restoration
If restoration is attempted on an invalid server:
Error Response

Locking Backups

Locked backups cannot be deleted:
Toggle Lock
Response
Lock important backups to prevent accidental deletion:
  • Pre-update backups
  • Known good states
  • Milestone backups
Requires backup.delete permission to lock/unlock backups. Users without this permission cannot set locks when creating backups.

Deleting Backups

Remove a backup permanently:
Delete Backup
Success
Deleting a backup is permanent. The backup file is removed from storage and cannot be recovered.
Locked backups cannot be deleted:
Locked Backup Error

Backup Limits

Servers have a maximum number of backups:
Check Limit
Response
Attempting to create more than allowed:
Error Response
Failed backups count toward the limit. Delete failed backups to free up slots.

Storage Adapters

Backups can be stored in different locations:

Wings Local Storage

Stored on the node’s filesystem. Fast but limited by disk space.

AWS S3

Stored in Amazon S3 bucket. Unlimited storage, slower uploads.
Storage adapter is configured by administrators. Users cannot choose where backups are stored.

Automated Backups

Create backups automatically using schedules: Schedule: 0 2 * * * (Daily at 2 AM) Task:
See Task Scheduling for more details.

Backup Best Practices

Set up automated daily or weekly backups. More frequent backups for active servers:
  • Production servers: Daily backups
  • Development servers: Weekly backups
  • Before updates: Manual backup
Periodically test restoring backups to ensure they work:
  1. Download a backup
  2. Create a test server
  3. Restore the backup
  4. Verify files and functionality
Lock backups of known good states:
  • Before major updates
  • After successful migrations
  • Milestone versions
Reduce backup size and time by excluding:
  • Log files (*.log)
  • Cache directories
  • Temporary files
  • Old backup files
Keep local copies of important backups:

Activity Logging

Backup operations are logged:
Example Logs

Troubleshooting

  • Check available disk space on node
  • Verify Wings daemon is running
  • Review Wings logs for errors
  • Try excluding more files to reduce size
  • Check S3 credentials if using S3 storage
  • Verify backup completed successfully
  • Check network connectivity to node/S3
  • Generate a new download URL
  • For S3 backups, verify IAM permissions
  • Check Wings daemon status
  • Review Wings logs for extraction errors
  • Verify backup file isn’t corrupted (checksum)
  • Ensure sufficient disk space
  • Contact administrator if issue persists
You’ve hit the maximum backups for your server:
  • Delete old or failed backups
  • Download important backups before deleting
  • Request limit increase from admin
  • Use automated cleanup (delete backups older than X days)

Advanced: Manual Backup Extraction

Backups are standard tar.gz archives: