PostgreSQL Backups
Basic steps to create bare minimum backups.
Sentinel is using PostgreSQL database for all analytics/reports/history data. PostgreSQL should be done on regular bases to eliminate possible data losses in case of disasters.
Standalone Hot Backup
This is the standalone backups which provide fast and consistent data snapshot. These are backups that cannot be used for point-in-time recovery, yet are typically much faster to backup and restore than pg_dump
dumps. This backups can not be used for PostgreSQL version migration and can created and restored only on the same major version.
Create standalone hot backup
Create folder for backups
Run command to create backup:
On finish this command will create hot backup of the PostgreSQL cluster. It will create folder with current date which will have two files base.tar.gz
and pg_wal.tar.gz
Restore hot backup
Assuming following
postgres-snt
- PostgreSQL service name for Sentinel,/opt/pdgata/
- PostgreSQL data directory specified asPGDATA
,/data/pg_backup/2022-11-07
- Folder with backup which be restored.
Create folder for PostgreSQL and ensure that its empty:
Extract data in this folder from preferred backup
Ensure valid permissions is set
Restart your PostgreSQL service
Connect to database and check status:
Run to check status:
PostgreSQL cluster is ready to be used and Sentinel service can be started.
Last updated