Understanding RamNode's backup policy and best practices
As of July 12, 2014, RamNode no longer takes backups of client VPS data. We highly recommend that you maintain your own regular backups to prevent data loss.
Data loss can occur for many reasons:
Having regular backups ensures you can recover from any of these situations quickly.
If you're using RamNode Cloud VPS, you can create snapshots and backups directly from the Cloud Control Panel. These can be restored at any time with just a few clicks.
Consider using these popular backup solutions:
Store your backups off-site using:
Follow the 3-2-1 backup strategy:
A backup you haven't tested is not a backup. Regularly test restoration to ensure:
Here's a basic rsync backup to another server:
# Backup to remote server rsync -avz -e ssh /path/to/backup user@remote-server:/backup/location/ # Add to crontab for daily backups 0 2 * * * rsync -avz -e ssh /path/to/backup user@remote-server:/backup/location/
Don't forget to backup databases separately:
# MySQL/MariaDB mysqldump -u root -p database_name > backup.sql # PostgreSQL pg_dump database_name > backup.sql
You are solely responsible for maintaining backups of your VPS data. RamNode cannot recover data if your VPS is lost, corrupted, or deleted. Plan and implement a backup strategy before disaster strikes.