Mein Server ist von Hetzner, dort kann man Backupspace dazu buchen, teilweise ist er auch mit drin. Dann wollen wir das mal Testen.
Die Anleitung
Ich hatte erst eine andere Anleitung von Hetzner, wo das mit dem Port 23 nicht drin stand. Hat dann was länger gedauert, bis es ohne Passwort ging Aber, am Ende ging es dann mit
sftp -P 23 u123456@u123456.your-backup.de
Nun kann man mittels Borgbackup Daten verschlüsselt dort ablegen.
INIT
borg init --encryption=repokey ssh://u123456@u123456.your-backup.de:23/./backup
Enter new passphrase:
Enter same passphrase again:
Do you want your passphrase to be displayed for verification? [yN]: N
By default repositories initialized with this version will produce security
errors if written to with an older version (up to and including Borg 1.0.8).
If you want to use these older versions, you can disable the check by running:
borg upgrade --disable-tam ssh://u123456@u123456.your-backup.de:23/./backup
See https://borgbackup.readthedocs.io/en/stable/changes.html#pre-1-0-9-manifest-spoofing-vulnerability for details about the security implications.
IMPORTANT: you will need both KEY AND PASSPHRASE to access this repo!
Use "borg key export" to export the key, optionally in printable format.
Write down the passphrase. Store both at safe place(s).
CREATE
borg create ssh://u123456@u123456.your-backup.de:23/./backup::initial /backup
Enter passphrase for key ssh://u123456@u123456.your-backup.de:23/./backup:
Wenn man sehen will, was passiert kann man das so machen.
borg create --list ssh://u123456@u123456.your-backup.de:23/./backup::initial /backup
Dann zeigt Borg an was er die ganze Zeit macht.
LIST
borg list ssh://u123456@u123456.your-backup.de:23/./backup::initial
Kleine Ergänzung. Das Backup heißt vm1
borg list ssh://u123456@u123456.your-backup.de:23/./backup/vm1
Das würde jetzt alle Backups auflisten.
Der Inhalt würde ein Backup mit dem Namen vm1-2019-09-23T09:00:02 enthalten.
borg list ssh://u123456@u123456.your-backup.de:23/./backup/vm1::vm1-2019-09-23T09:00:02
Dann zeigt Borg den Inhalt des Backups an.
DELETE
borg delete ssh://u123456@u123456.your-backup.de:23/./backup::initial
Anleitung
Der Link zur Anleitung von Borgbackup
Jetzt das Ganze noch automatisieren, das alle paar Tage die Daten automatisch gesichert werden.