I have a Linux Postfix mail server, and I am doing a configuration backup via FTP. but actually thinking about it, this will give me a 3-4 day period for recover my server... whats is the best way to recover my server in case of failure (hours instead of days)? thanks...
Asked
Active
Viewed 3,942 times
2 Answers
3
- Use automated machine build tools (Kickstart, Debian Installer Preseeding) to make machines quick and easy to create
- Use configuration management to maintain the configuration of the server so it's easy to reapply the configuration
- Regularly test that the backups you take are useful by running an entire restore from bare metal.
womble
- 95,029
- 29
- 173
- 228
1
in addition to womble's suggestion, tar zcvf + ssh is your friend on a linux server. Once you have a server's configuration where you want it, simply
tar zcvf - directory_to_backup/ | ssh someotherserver "cat > serverbackupfile.tgz"
to save a copy of the important configurations.
Greeblesnort
- 1,739
- 8
- 10