How Do I Backup My PostgreSQL Database with Cron?

后端 未结 8 1168
孤街浪徒
孤街浪徒 2021-01-30 09:31

I can run commands like vacuumdb, pg_dump, and psql just fine in a script if I preface them like so:

/usr/bin/sudo -u postgres /usr/bin/pg_dump -Fc mydatabase &g         


        
8条回答
  •  离开以前
    2021-01-30 10:20

    I have a dynamic bash script that backs up all the databases on the server. It gets a list of all the databases and then vacuums each DB before performing a backup. All logs are written to a file and then that log is emailed to me. This is something you could use if you want.

    Copy the code below into a file and add the file to your crontab. I have setup my pg_hba.conf to trust local connections.

    #!/bin/bash
    logfile="/backup/pgsql.log"
    backup_dir="/backup"
    touch $logfile
    databases=`psql -h localhost -U postgres -q -c "\l" | sed -n 4,/\eof/p | grep -v rows\) | grep -v template0 | grep -v template1 | awk {'print $1'}`
    
    echo "Starting backup of databases " >> $logfile
    for i in $databases; do
            dateinfo=`date '+%Y-%m-%d %H:%M:%S'`
            timeslot=`date '+%Y%m%d%H%M'`
            /usr/bin/vacuumdb -z -h localhost -U postgres $i >/dev/null 2>&1
            /usr/bin/pg_dump -U postgres -i -F c -b $i -h 127.0.0.1 -f $backup_dir/$i-database-$timeslot.backup
            echo "Backup and Vacuum complete on $dateinfo for database: $i " >> $logfile
    done
    echo "Done backup of databases " >> $logfile
    
    tail -15 /backup/pgsql.log | mailx youremail@domain.com
    

提交回复
热议问题