Update README.md
This commit is contained in:
parent
04d853c8cc
commit
f509e388d4
|
@ -30,9 +30,8 @@ saukvipeu:/etc/cron.d/backups
|
|||
|
||||
Flux en mode `remote` :
|
||||
```
|
||||
Systemd.borgmatic.timer
|
||||
--> borgmatic.service
|
||||
--ssh(borg@fqdn1)--> sudo borgmatic create --verbosity 1
|
||||
Systemd.borgmatic.timer(fqdn1)
|
||||
--> systemclt start borgmatic.service
|
||||
-> fqdn1:/etc/borgmatic/config.yaml + /etc/borgmatic/excludes
|
||||
--ssh(borg@sauvkipeu)--> /var/backups/borg/fqdn1.repo
|
||||
```
|
||||
|
@ -117,7 +116,7 @@ adduser --disabled-password --system --group --home /srv/borg/ --shell /bin/bash
|
|||
|
||||
Créer des clés `ssh` pour l'utilisateur `root` (si besoin) :
|
||||
```
|
||||
sudo ssh-keygen -t ed25519
|
||||
ssh-keygen -t ed25519
|
||||
```
|
||||
|
||||
Récupérer les scripts et modèles :
|
||||
|
@ -215,6 +214,14 @@ C'est le cas nominal. Le principe consiste à configurer le serveur de sauvegard
|
|||
|
||||
## Côté machine à sauvegarder
|
||||
|
||||
Script expérimental (s'arrêtant à l'ajout de la passphrase) :
|
||||
```
|
||||
wget /-o /tmp/deploy-remote https://git.a-lec.org/a-lec/commissions/infrastructure/sauvegardes/-/raw/main/Plan%20Borg/bin/deploy-remote
|
||||
bash /tmp/deploy-remote
|
||||
```
|
||||
|
||||
Sinon, mode manuel.
|
||||
|
||||
Ajouter les backports bullseye dans `/etc/apt/source.list.d` :
|
||||
```
|
||||
echo "deb http://ftp.fr.debian.org/debian/ bullseye-backports main" > /etc/apt/sources.list.d/backports.list
|
||||
|
@ -234,7 +241,7 @@ systemctl daemon-reload
|
|||
|
||||
Créer des clés `ssh` pour l'utilisateur `root` (si besoin) :
|
||||
```
|
||||
sudo ssh-keygen -t ed25519
|
||||
ssh-keygen -t ed25519
|
||||
```
|
||||
|
||||
Créer et peupler le dossier de configruation de Borgmatic :
|
||||
|
@ -281,7 +288,7 @@ systemctl start borgmatic
|
|||
|
||||
## Tester côté serveur
|
||||
|
||||
~~Lancer une sauvegarde : `time sudo /srv/borg/bin/dobackup-remote foo.bar.org`.~~
|
||||
~~Lancer une sauvegarde : `time /srv/borg/bin/dobackup-remote foo.bar.org`.~~
|
||||
|
||||
Afficher les informations du dépôt :
|
||||
```
|
||||
|
@ -385,7 +392,7 @@ Sys. de fichiers Taille Utilisé Dispo Uti% Monté sur
|
|||
|
||||
Lister les sauvegardes de la machine `audio.a-lec.org` :
|
||||
```
|
||||
$ sudo borgmatic -c /etc/borgmatic.d/audio.a-lec.org.yaml list
|
||||
$ borgmatic -c /etc/borgmatic.d/audio.a-lec.org.yaml list
|
||||
/var/backups/borg/audio.a-lec.org.repo: Listing archives
|
||||
2023-01-20T01:34 Fri, 2023-01-20 01:34:12 [625a6eb4255718932254fa8eda18a17f10ada05d051c1576168758ea1ec9e014]
|
||||
2023-01-21T12:52 Sat, 2023-01-21 12:52:23 [b256357077848c23ca0650164f4ec51ecb97a8bb8fc38d652a8acb1e0968a951]
|
||||
|
@ -397,7 +404,7 @@ $ sudo borgmatic -c /etc/borgmatic.d/audio.a-lec.org.yaml list
|
|||
Lister les fichiers d'une sauvegarde :
|
||||
```
|
||||
mkdir -p tmp ; cd tmp
|
||||
sudo borgmatic -c /etc/borgmatic.d/audio.a-lec.org.yaml list --archive 2023-01-25T00:11
|
||||
borgmatic -c /etc/borgmatic.d/audio.a-lec.org.yaml list --archive 2023-01-25T00:11
|
||||
/var/backups/borg/audio.a-lec.org.repo: Listing archives
|
||||
drwxr-xr-x root root 0 Fri, 2023-01-20 01:22:45 etc
|
||||
drwxr-xr-x root root 0 Mon, 2021-08-16 17:00:51 etc/console-setup
|
||||
|
@ -412,7 +419,7 @@ drwxr-xr-x root root 0 Mon, 2021-08-16 17:00:51 etc/console-setup
|
|||
Récupérer un fichier ou un dossier :
|
||||
```
|
||||
mkdir -p tmp ; cd tmp
|
||||
sudo borgmatic -c /etc/borgmatic.d/audio.a-lec.org.yaml extract --archive 2023-01-25T00:11 --path /etc/fstab
|
||||
borgmatic -c /etc/borgmatic.d/audio.a-lec.org.yaml extract --archive 2023-01-25T00:11 --path /etc/fstab
|
||||
ll etc/fstab
|
||||
-rw-r--r-- 1 root root 569 13 mai 2022 etc/fstab
|
||||
```
|
||||
|
@ -420,7 +427,7 @@ ll etc/fstab
|
|||
Récupérer tout une sauvegarde :
|
||||
```
|
||||
mkdir -p tmp ; cd tmp
|
||||
sudo borgmatic -c /etc/borgmatic.d/audio.a-lec.org.yaml extract --archive 2023-01-25T00:11
|
||||
borgmatic -c /etc/borgmatic.d/audio.a-lec.org.yaml extract --archive 2023-01-25T00:11
|
||||
```
|
||||
|
||||
## Suppression
|
||||
|
|
Loading…
Reference in New Issue