Off-site Backup with Borg: Difference between revisions
Jump to navigation
Jump to search
(Created page with "A very quick run-down how ti use Borg on itself for daily offsite backups (non-sql). Situation: '''local''' is the macine that needs to be backed up, '''HOST''' is the machine...") |
No edit summary |
||
Line 1: | Line 1: | ||
A very quick run-down how | A very quick&dirty run-down how to use Borg for daily offsite backups (non-sql). Situation: '''local''' is the macine that needs to be backed up, '''HOST''' is the machine where backups will be stored. | ||
* HOST - remote storage for backups | * HOST - remote storage for backups | ||
Line 60: | Line 60: | ||
borg prune --list --prefix 'git_' --show-rc --keep-daily 7 --keep-weekly 4 --keep-monthly 6 | borg prune --list --prefix 'git_' --show-rc --keep-daily 7 --keep-weekly 4 --keep-monthly 6 | ||
</pre> | </pre> | ||
[[Category:System]] |
Revision as of 18:18, 17 September 2019
A very quick&dirty run-down how to use Borg for daily offsite backups (non-sql). Situation: local is the macine that needs to be backed up, HOST is the machine where backups will be stored.
- HOST - remote storage for backups
- USER - remote user
- DIRECTORY - remote directory containing backups
We assume Borg is installed on HOST already.
- setup USER @ HOST (on local: ssh-keygen -t ed25519 -b 320, on HOST: useradd USER, add key to authorized_keys, etc etc)
- create DIRECTORY at HOST and make it writable by USER
- on local: compile borg like: https://borgbackup.readthedocs.io/en/stable/installation.html#git-installation
- the above needs some additional packages but u'll figure that out
- on local: enter borg env like
source /root/src/borg-env/bin/activate
- on local: init repository like
borg init --encryption=keyfile-blake2 USER@HOST:DIRECTORY (provide passphrase)
- on local: export key like:
borg key export USER@HOST:DIRECTORY borg.key
- on local: hide key in a safe place & remember passphrase & shred borg.key
- modify & use the script (eg. by adding it into crontab):
#!/bin/bash # # Borg automated backups # Based on: https://borgbackup.readthedocs.io/en/stable/quickstart.html#automating-backups # .. but not so fancy, lel # # This will backup to HOST into DIRECTORY # ::sys is a repository for system backup (/etc /root /var/log /usr/local) # ::www is a repository for www backup (/data/www) # ::git is a repository for git backup (/data/git) # ########################################################################################## # get into the environment source /root/src/borg-env/bin/activate # set some variables export BORG_REPO=USER@HOST:DIRECTORY export BORG_PASSPHRASE='PASSPHRASE' # some helpers and error handling info() { printf "\n%s %s\n\n" "$( date )" "$*" >&2; } trap 'echo $( date ) Backup interrupted >&2; exit 2' INT TERM # make a sys backup and prune old sys backups info "Starting sys backup" borg create --stats ::'sys_{now}' /etc /root /var/log /usr/local info "Pruning sys repository" borg prune --list --prefix 'sys_' --show-rc --keep-daily 7 --keep-weekly 4 --keep-monthly 6 # make a www backup and prune old www backups info "Starting www backup" borg create --stats ::'www_{now}' /data/www info "Pruning www repository" borg prune --list --prefix 'www_' --show-rc --keep-daily 7 --keep-weekly 4 --keep-monthly 6 # make a git backup and prune old git backups info "Starting git backup" borg create --stats ::'git_{now}' /data/git info "Pruning git repository" borg prune --list --prefix 'git_' --show-rc --keep-daily 7 --keep-weekly 4 --keep-monthly 6