VPS backup: how to protect your data
Updated 7/18/2026
The golden rule of infrastructure: data that exists in one place is data you can lose. A well-run VPS always has a backup strategy. Here are your options.
1. Snapshots
A snapshot is a full copy of the server at a point in time, which you can take from the panel with one click. Perfect before a major update or a risky change: if something goes wrong, you restore in minutes.
2. Backup Box (dedicated storage)
For regular, off-server copies, use a Backup Box: storage from 1 TB to 20 TB, accessible over SFTP, SMB and WebDAV. You copy databases and important files to it, and if the server fails completely, the data is safe elsewhere.
3. Automated backup with cron
Automate everything with a script run daily. Example that saves a PostgreSQL database to a Backup Box over SFTP:
pg_dump mydb | gzip > /tmp/mydb-$(date +%F).sql.gz
# then copy the file to the Backup Box over sftp/rsync
The 3-2-1 rule
The industry-recommended strategy: 3 copies of the data, on 2 different storage types, with 1 in another location. A snapshot plus a Backup Box already covers this principle.
Do not wait for the first incident to think about backup. Set it up on the day you launch the server.
Put this guide into practice on your own VPS
EU cloud servers, billed hourly, ready in minutes, with one-click installs for dozens of apps.
See pricingRelated tutorials
How to run your own ChatGPT on a VPS
Run local AI models or a ChatGPT-style interface on your own server, with private data and no per-user monthly subscription.
Updated 7/18/2026GuidesThe best VPS for WordPress: which plan to choose
How much CPU, RAM and disk you need for a fast WordPress site, based on traffic, plus how to install it with one click.
Updated 7/18/2026GuidesHow to install a free SSL certificate with Let's Encrypt
HTTPS is a must for any modern site. Here is how to get and auto-renew a free SSL certificate on your VPS.
Updated 7/18/2026