Line 503: |
Line 503: |
| | | |
| <ol></li><li>You first must check what backup archives are available. The jobname of this server backup is 'prodserv'. | | <ol></li><li>You first must check what backup archives are available. The jobname of this server backup is 'prodserv'. |
| + | On the Affa backup server do: |
| affa --list-archives prodserv | | affa --list-archives prodserv |
| <small><pre> | | <small><pre> |
Line 546: |
Line 547: |
| | | |
| </li><li>Choose the daily.0 archive, which was created Monday night. Now restore the mailbox 'orders' using the rsync command. | | </li><li>Choose the daily.0 archive, which was created Monday night. Now restore the mailbox 'orders' using the rsync command. |
− | </li><li>Now run the rsync command ''(note the trailing slash!)'': | + | </li><li>Now run the rsync command ''(note the trailing slash!)'' on the Affa backup server: |
| export RDIR=/home/e-smith/files/users/briedlin/Maildir/.orders/ | | export RDIR=/home/e-smith/files/users/briedlin/Maildir/.orders/ |
| | | |
Line 561: |
Line 562: |
| | | |
| <ol></li><li>You have searched and found the latest version of this file in archive weekly. | | <ol></li><li>You have searched and found the latest version of this file in archive weekly. |
− | </li><li>Copy it back to the server: | + | </li><li>Copy it back to the server - On the Affa backup server do: |
| export RFILE=/home/e-smith/files/ibays/docs/files/orderform.pdf | | export RFILE=/home/e-smith/files/ibays/docs/files/orderform.pdf |
| rsync -av /var/affa/prodserv/weekly.1/$RFILE 10.204.48.1:$RFILE | | rsync -av /var/affa/prodserv/weekly.1/$RFILE 10.204.48.1:$RFILE |
Line 575: |
Line 576: |
| | | |
| Do not use shell variables to shorten the command. It would complicate things more than it would help. | | Do not use shell variables to shorten the command. It would complicate things more than it would help. |
− | Quote the source and destination path. In the destination path escape blank characters with a double backslash and brackets with a single backslash. | + | Quote the source and destination path. In the destination path escape blank characters with a double backslash and brackets with a single backslash. On the Affa backup server do: |
| rsync -av "/var/affa/fileshare/daily.4/home/e-smith/files/ibays/mechfiles/files/Valve Control (Design Gr)/VALVE LIST FOR ISSUED.xls" "192.168.1.7:/home/e-smith/files/ibays/mechfiles/files/Valve\\ Control\\ \(Design\\ Gr\)/VALVE\\ LIST\\ FOR\\ ISSUED.xls" | | rsync -av "/var/affa/fileshare/daily.4/home/e-smith/files/ibays/mechfiles/files/Valve Control (Design Gr)/VALVE LIST FOR ISSUED.xls" "192.168.1.7:/home/e-smith/files/ibays/mechfiles/files/Valve\\ Control\\ \(Design\\ Gr\)/VALVE\\ LIST\\ FOR\\ ISSUED.xls" |
| | | |