As of July 12, 2014, RamNode no longer takes backups of client VPS data. We highly recommend that clients keep remote backups on their own.
Important: You Are Responsible for Your Data
Data loss is always possible with any computer storage system. Clients are responsible for their own data and must maintain their own backup solutions.
RamNode discontinued backup services to:
Without backups, you risk losing data due to:
Follow the 3-2-1 backup strategy:
How often to backup depends on how often your data changes:
# Database backup
mysqldump -u username -p database_name > backup.sql
# Compress and backup directory
tar -czf backup-$(date +%Y%m%d).tar.gz /path/to/directory
# Transfer to remote server
rsync -avz /local/path/ user@remote:/backup/path/Set up cron jobs for automatic backups:
# Edit crontab
crontab -e
# Daily backup at 2 AM
0 2 * * * /path/to/backup-script.sh
# Weekly backup on Sunday at 3 AM
0 3 * * 0 /path/to/weekly-backup.shConsider using cloud backup services:
If using a control panel:
For Cloud instances, RamNode provides snapshot functionality:
Snapshots Are Not Offsite Backups
While Cloud snapshots are useful for quick recovery, they're stored in the same datacenter. For true disaster recovery, maintain offsite backups as well.
A backup you haven't tested is not a backup at all:
Backups on the same server are lost if the server fails. Always store backups offsite.
Backups can become corrupted or incomplete. Test restoration regularly to ensure backups work.
If you backup weekly but your database updates daily, you risk losing up to a week of data.
Keep multiple backup versions. Sometimes corruption isn't discovered until days later.
If you lose data without backups:
Start Backing Up Today
Don't wait until you experience data loss. Set up your backup solution today. Even a simple daily backup to another server is better than no backup at all. If you need recommendations for backup solutions or help setting up automated backups, contact our support team.