Independent research. Reader-supported through clearly marked affiliate links.See our disclosure
Back to GuidesSelf-Managed VPS Guide

Vultr Automatic Backups for Small Businesses: Design and Restore Testing

Design VPS backups and test restores with Vultr automatic backups. Covers limitations, testing steps, and ransomware prevention for US small businesses.

Read this article in Chinese
Editorial disclosure

Some links may earn us a commission at no added cost to you. Providers do not approve our conclusions.

Bottom line

Vultr automatic backups provide whole-server snapshots but require additional steps for database consistency and do not include block storage. Test restores regularly and maintain offline backups per CISA guidelines to protect against ransomware.

Understanding Vultr Automatic Backups

Vultr offers automatic backups as an optional feature for compute instances. Backups are stored in the same datacenter on a separate, fault-tolerant storage system. You can configure backups to run daily, every other day, weekly, or monthly, with a customizable time of day and day of week/month. The two most recent backups are retained; older backups are automatically removed after each scheduled interval. Pricing adds a 20% higher base monthly/hourly fee to the instance.

Backups capture the entire active file system of the VPS. They do not include attached block storage volumes. Backup snapshots are taken while the server is running, which means the backup is similar to a state after a non-graceful restart. Modern file systems and databases typically handle this, but for write-intensive applications, you may need to take additional steps like running mysqldump via cron to a local directory to ensure data consistency.

  • Backups are stored in the same datacenter as the instance.
  • Configurable schedules: daily, every other day, weekly, or monthly.
  • Only two most recent backups are kept; older ones are deleted.
  • Backups do not include block storage volumes.
  • Snapshots are crash-consistent, not application-consistent.

Sources: [1] Vultr automatic backups documentation

Essential Backup Design for Small Business VPS

For a self-managed VPS, design backups to cover both the system state and critical application data. Since Vultr backups do not include block storage, if you use block storage for databases or files, you must implement a separate backup method for that data. According to the Vultr documentation, you can use tools like mysqldump to export databases to a directory on the local file system, which will then be included in the VPS backup. Schedule these exports just before the Vultr backup runs to maximize consistency.

Consider the CISA guidance to maintain offline, encrypted backups of critical data and regularly test their availability and integrity. While Vultr backups are stored in the same datacenter, they are on a separate storage system, providing some resilience. However, they are not offline backups. To build an independent copy, deploy a temporary instance from a backup or converted snapshot, then transfer critical files with standard tools such as SFTP or rsync to separate storage. Vultr does not support directly downloading backups or snapshots. This protects against datacenter-wide incidents and ransomware that might target online backups.

  • Separate backup strategies for block storage data are required.
  • Use application-level tools (e.g., mysqldump) for database consistency.
  • Store backups offline and encrypted per CISA recommendations.
  • Regularly test backup restoration procedures.
  • Consider multi-cloud or offline storage for critical backups.

Sources: [1] Vultr automatic backups documentation[2] CISA ransomware guide[3] Vultr data portability guide

Step-by-Step Restore Testing Procedure

Testing backups is critical. Vultr allows you to restore an entire instance from a backup via the control panel or API. Since backups are whole-server snapshots, you cannot restore individual files. For an isolated test, convert the automatic backup to a snapshot and deploy a new temporary instance from that snapshot. Restoring an automatic backup directly replaces the existing instance's primary disk, so it is not the safer test path. This isolation prevents disruption to the live environment.

The CISA guide emphasizes testing backup procedures regularly to ensure data can be recovered in a disaster scenario. Develop a test plan that includes: scheduling a test, documenting the restoration process, verifying application functionality, and checking data integrity. After testing, always verify that the restored server is not accessible from the public internet to avoid accidental exposure. Record any lessons learned and update your backup design accordingly.

  • Restore to a new instance for testing, not the production server.
  • Convert backup to snapshot for restoration to a different server.
  • Verify application functionality and data integrity post-restore.
  • Document the restoration process and any issues encountered.
  • Schedule regular tests (e.g., quarterly) per your business continuity plan.

Sources: [1] Vultr automatic backups documentation[2] CISA ransomware guide[3] Vultr snapshot restore documentation

Who Should Use Vultr Automatic Backups (and Who Should Avoid Them)

Vultr automatic backups are suitable for small businesses running standard web servers, simple applications, or development environments where whole-server snapshots are sufficient. The ease of setup and predictable cost (20% surcharge) make them accessible for non-specialist teams. However, they are not ideal for highly write-intensive databases, applications requiring consistent backups, or setups heavily reliant on block storage. In those cases, complement with application-level backups or consider alternative backup solutions.

Small businesses with compliance requirements, such as those handling PII, should note that Vultr backups are stored in the same datacenter and may not meet certain regulatory standards for geographical redundancy or offline storage. Evaluate your obligations and consult legal counsel if necessary. The CISA guide advises maintaining offline backups and testing them, which may mean you need to build additional safeguards beyond Vultr's built-in features.

  • Good for: simple web servers, dev environments, whole-server rollbacks.
  • Less ideal for: large databases, block storage-heavy setups, strict compliance.
  • Supplement with application-specific backups for databases.
  • Review compliance needs for data residency and offline storage.

Sources: [1] Vultr automatic backups documentation

Operational Responsibility and What Must Be Rechecked

As a self-managed VPS user, you are responsible for configuring, monitoring, and testing your backups. Vultr provides the backup feature, but you must enable it, choose the schedule, and ensure your data is included. Regularly check the backup status in the control panel or via API. After any major configuration change or software update, verify that backups are still capturing the necessary data.

Prices and features are subject to change. The 20% surcharge mentioned is based on the documentation at the time of writing; always confirm current pricing on Vultr's website. Recheck the backup schedule periodically and after material infrastructure changes. Keep an eye on Vultr's status page for any datacenter issues that could affect backup integrity.

Finally, review your incident response plan annually. The CISA guide recommends creating and exercising a cyber incident response plan that includes ransomware scenarios. Ensure your backup and restore procedures are integrated into this plan and that all team members understand their roles.

  • You must enable and configure backups; they are not automatic by default.
  • Check backup status through the control panel or API, and implement separate monitoring if your recovery objective requires alerts.
  • Confirm current pricing on Vultr's website as it may change.
  • Update backup design after system changes or software updates.
  • Integrate backup testing into your incident response exercises.

Sources: [1] Vultr automatic backups documentation[2] CISA ransomware guide

Ransomware Protection and Backup Considerations

Ransomware threats specifically target backups to prevent recovery without payment. CISA's guide stresses maintaining offline, encrypted backups and testing them. Because Vultr backups remain online and are managed from the same account, an account compromise can expose recovery operations and allow destructive changes. Independent offline or separately controlled copies reduce that shared-account risk. Mitigate this by using strong authentication, limiting API key permissions, and storing copies of critical backups off-site.

Enable multi-factor authentication for the Vultr account and use separate credentials for an independent backup destination. Vultr snapshots cannot be downloaded directly; deploy a temporary instance and transfer critical files to separately controlled storage when an off-platform copy is required. Remember that immutable storage may be offered by some vendors, but it may not meet all compliance requirements and can incur significant costs if misconfigured.

  • Online backups are vulnerable to account compromise; use MFA.
  • Export critical backups to offline storage regularly.
  • Limit API key permissions to reduce risk of malicious backup deletion.
  • Test your ability to recover from ransomware using offline backups only.

Sources: [1] CISA ransomware guide[2] Vultr data portability guide

Primary sources

We use provider documentation for product facts and mark time-sensitive details for rechecking.

Vultr Automatic Backups for Small Businesses: Design and Restore Testing | VPS188