Backup auf Linux/Ubuntu mit postgres (Rezept)

Alles Rund um Postgre Datenbanken
Antworten
hsteppke
Beiträge: 11
Registriert: 05.06.2019, 19:09

Backup auf Linux/Ubuntu mit postgres (Rezept)

Beitrag von hsteppke »

Dachte ich teile mal meine Backup Lösung auf Server Seite. Hab zwei verschiedene DB in dem Postgress deshalb stehen da 4 dbnamen zum backup.
Bei den meisten reichen vermutlich 2 Name der Datanbank wie erzeugt und Name des users (für den ja leider auch eine erzeugt wird so wie er heist).

Code: Alles auswählen

#!/bin/bash

logfile="/pathtobackup/backup.log"
backup_dir="/pathtobackup"
databases=( faktura fakturauser dbname dbusername);  # Name of database and name of db with the name of the users using the db (is empty but anyway back it up)

if [ ! -d $backup_dir ]; then
exit 0;
fi

touch $logfile
echo "Starting backup of databases " > $logfile
echo "Backup and Vacuum start for all database: " >> $logfile
su -c "/usr/bin/vacuumdb -a -z >/dev/null 2>&1" postgres

for i in ${databases[@]}; do
        dateinfo=`date '+%Y-%m-%d %H:%M:%S'`
        timeslot=`date '+%Y%m%d%H%M'`
        su -c "/usr/bin/pg_dump -F c -Z 9 -b $i -f $backup_dir/$i-database-$timeslot.backup" postgres
        su -c "cp $backup_dir/$i-database-$timeslot.backup $backup_dir/$i-database-latest.backup" postgres
        echo "Backup and Vacuum complete on $dateinfo for database: $i " >> $logfile
done
echo "Done backup of databases " >> $logfile

cat $logfile | mailx -s "Faktura Postgresql Backup" root



###########################################
exit;
###########################################


# Backup
#
# su postgres
# pg_dump faktura > /mnt/backup/faktura_bck.latest
# pg_dump fakturauser > /mnt/backup/fakturauser_bck.latest
#
# OR with compression
#
# pg_dump -Fc faktura > /mnt/backup/faktura_bck.latest
# pg_dump -Fc fakturauser > /mnt/backup/fakturauser_bck.latest
#

# Restore
#
# su postgres
#
# createuser -S -R -d -E -P fakturauser
#
# psql template1
# CREATE DATABASE faktura OWNER fakturauser ENCODING 'UTF8'; \q
# CREATE DATABASE fakturauser OWNER fakturauser ENCODING 'UTF8'; \q
#
# if backup is uncompressed
# psql faktura < /mnt/backup/postgres/faktura-database-latest.backup
# psql fakturauser < /mnt/backup/postgres/fakturauser-database-latest.backup
#
# if Backup is compressed
# pg_restore -d faktura /mnt/backup/postgres/faktura-database-latest.backup
# pg_restore -d fakturauser /mnt/backup/postgres/fakturauser-database-latest.backup
#
#

Faktura32: 5 Clients auf Windows 7, Server Ubuntu 16.04 LTS postgress 9.5

Antworten