Results 1 to 4 of 4
Hello,
The situation is this:
An training environment where all servers are virtual and I have no physical access to the servers.
Is it possible to backup the Debian email ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-07-2013 #1Just Joined!
- Join Date
- Jan 2011
- Location
- Michigan
- Posts
- 5
Backup entire Debian server over network
Hello,
The situation is this:
An training environment where all servers are virtual and I have no physical access to the servers.
Is it possible to backup the Debian email server over the network to another server in case the original server is compromised beyond repair.
I would need to be able to recover from the saved backup as well.
- 03-08-2013 #2Just Joined!
- Join Date
- Feb 2008
- Posts
- 14
You can copy a machine live using "rsync" command.
ExampleAlso using this to restore the machine will work as well.Code:rsync -avz / user@remotemachine.com:/backupfolder/
I use as well rdiff-backup which is a program to allow you to keep copies of differences.
I copy the entire server then I make additional backups of that server every night to a rdiff-backup folder
rdiff-backup is not required but in case you want to revert mistakes it will keep copies of them.Code:rdiff-backup /Production /BACKUPDRIVE/productionwithrdiff/
http : / / rdiff-backup.nongnu.org/index.html
- 03-08-2013 #3
There are some excellent tutorials here:
Debian / Ubuntu Linux Install and Configure Remote Filesystem Snapshot with rsnapshot Incremental Backup Utility
and here:
Remote backups using rsync | Debian Tutorials
Hope this helps
- 03-08-2013 #4Just Joined!
- Join Date
- Jan 2011
- Location
- Michigan
- Posts
- 5
Thanks for the replies, I'll get to work playing with the various suggestions.


Reply With Quote

