...
Code Block | ||||
---|---|---|---|---|
| ||||
sudo -u postgres -i /home/dba/scripts/dbbackup.sh > /var/tmp/dbbackup.log |
- Database was backed up
Code Block | ||||
---|---|---|---|---|
| ||||
# You should receive an email notifying you of the status of the backup. # The database backup log file is another source of information about the # outcome of the backups. Note that an empty database backup log file # indicates that the backups were successful. ls -la /var/tmp/dbbackup.log cat /var/tmp/dbbackup.log # The existence of the database backups can also be confirmed directly # from the command line: ls -la /mnt/backup/pg/daily/easproddb.sfgov.org-* |
...