Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
audina:server_backups [2010/06/25 09:42] smayr |
audina:server_backups [2024/10/15 09:45] (current) ajdavis |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | == Server Backups | + | = Server Backups = |
- | === Exchange Server === | + | All servers are virtualized. See more information [[network:esxi: |
- | ==== Daily Routine ==== | + | |
- | Verify Backups by following these steps: | + | |
- | * Connect | + | |
- | * Select computer " | + | |
- | * Login as Administrator (using domain credentials). | + | |
- | * Run " | + | |
- | * Check that daily backups were performed (should have a checkmark beside the daily entry). | + | |
- | ==== Weekly Routine ==== | + | [[https:// |
- | * Change hard drives for daily backups. | + | |
- | === File and Database Servers === | ||
- | * Connect to server RAS (Start > Run As: '' | ||
- | * Open '' | ||
- | * Use MS Backup to restore (or create new backups). | ||
- | === WWW Server (Main Website) === | ||
- | |||
- | Linux Bash script located in ''/ | ||
- | <code bash> | ||
- | #!/bin/bash | ||
- | ## removes old backup file | ||
- | #rm -rf / | ||
- | |||
- | ## backup the following directories: | ||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | ## send reminder to sysadmin to pull the tarball from the server. | ||
- | #mail ttran -s "Get the backup tarball off the server" | ||
- | </ | ||
- | |||
- | |||
- | === SWDEV Server === | ||
- | |||
- | Linux Bash script located in ''/ | ||
- | <code bash> | ||
- | #!/bin/bash | ||
- | ## removes old backup file | ||
- | #rm -rf / | ||
- | |||
- | ## backup the following directories: | ||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | rm -f / | ||
- | tar -czvf / | ||
- | |||
- | ## send reminder to sysadmin to pull the tarball from the server. | ||
- | #mail ttran -s "Get the backup tarball off the server" | ||
- | </ | ||
- | |||
- | === Directories to Backup === | ||
- | |||
- | ^ Resource | ||
- | | Subversion Repositories | \\SWDEV\data\repos | ||
- | | Config & Database Backup | \\SWDEV\data\backup | ||
- | | File Repositories | \\SWDEV\installers, |