Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
audina:server_backups [2018/03/13 16:32] ajdavis [New Backup Method] |
audina:server_backups [2024/10/15 09:45] (current) ajdavis |
||
---|---|---|---|
Line 1: | Line 1: | ||
= Server Backups = | = Server Backups = | ||
- | == New Backup Method == | + | All servers are virtualized. See more information [[network: |
- | All servers are now virtualized. See more information [[network: | + | |
- | Nakivo has a web interface for configuring jobs. It can be accessed at [[https:// | + | [[https:// |
- | Our license file can be found {{: | ||
- | |||
- | A backup of the Nakivo configuration can be found {{: | ||
- | |||
- | == Old Backup Method == | ||
- | |||
- | === Exchange Server (replaced by Office 365 subscription) === | ||
- | ==== Daily Routine ==== | ||
- | Verify Backups by following these steps: | ||
- | * Connect to EXCHANGE server using Remote Desktop Connection (Start > Programs > Accessories > Communications). | ||
- | * 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 ==== | ||
- | * 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 | ||
- | | Website, Config & Database Backup | \\WWW\data\backup | ||
- | | Subversion Repositories | \\SWDEV\data\repos | ||
- | | Config & Database Backup | \\SWDEV\data\backup | ||
- | | File Repositories | \\SWDEV\installers, | ||
- | |||
- | === Synchronizing Backups with SyncBack === | ||
- | |||
- | Download SyncBack from [[http:// | ||
- | |||
- | Create a backup profile like this: | ||
- | {{: |