Önce full backup yapılır. Şöyle yaparız
Açıklaması şöylepg_combinebackup /backups/fullbackup/ /backups/incr_backup1/ -o /combinebackup/
In this command:- /backups/fullbackup/ is the directory containing the full backup.- /backups/incr_backup1/ is the first incremental backup directory.- -o specifies the output directory where the combined backup will be stored.
Daha sonra PostgreSQL Service durdurulur. Şöyle yaparız
/usr/pgsql-17/bin/pg_ctl -D /var/lib/pgsql/17/data/ -l logfile stop
Dizine okuma ve yazma hakkı veriririz. Şöyle yaparız
chmod 700 /combinebackup
PostgreSQL Service tekrar başlatılır. Şöyle yaparız
/usr/pgsql-17/bin/pg_ctl -D /combinebackup/ -l /combinebackup/logfile start
PostgreSQL Service tarafından kullanılan dizini kontrol etmek için şöyle yaparız
SHOW data_directory; data_directory ---------------- /combinebackup (1 row)
Hiç yorum yok:
Yorum Gönder