diff options
Diffstat (limited to 'content/operations/sauvegardes')
-rw-r--r-- | content/operations/sauvegardes/pg_basebackup.md | 25 | ||||
-rw-r--r-- | content/operations/sauvegardes/restic.md | 6 |
2 files changed, 31 insertions, 0 deletions
diff --git a/content/operations/sauvegardes/pg_basebackup.md b/content/operations/sauvegardes/pg_basebackup.md index fe33f94..357e11f 100644 --- a/content/operations/sauvegardes/pg_basebackup.md +++ b/content/operations/sauvegardes/pg_basebackup.md @@ -301,6 +301,31 @@ docker exec -ti postgres psql rsync --progress -av /tmp/sql/{*.tar.gz,backup_manifest,dump-*} backup/target ``` +## Garbage collect old backups + +``` +mc ilm import deuxfleurs/${BUCKET_NAME} <<EOF +{ + "Rules": [ + { + "Expiration": { + "Days": 62 + }, + "ID": "PurgeOldBackups", + "Status": "Enabled" + } + ] +} +EOF +``` + +Check that it has been activated: + +``` + mc ilm ls deuxfleurs/${BUCKET_NAME} +``` + + ## Ref - https://philipmcclarence.com/backing-up-and-restoring-postgres-using-pg_basebackup/ diff --git a/content/operations/sauvegardes/restic.md b/content/operations/sauvegardes/restic.md index f959541..73463d1 100644 --- a/content/operations/sauvegardes/restic.md +++ b/content/operations/sauvegardes/restic.md @@ -169,3 +169,9 @@ I propose: ``` restic forget --prune --keep-within 1m1d --keep-within-weekly 3m --keep-within-monthly 1y ``` + +Also try to restore a snapshot: + +``` +restic restore <snapshot id> --target /tmp/$SERVICE_NAME +``` |