This plugin to vzdump will hook into after a single VM backup is done.
It will
- split the
.vma.lzofile thatvzdumpwrote to chunks of configurable size (default is 2 GB, B2 allows up to 5 GB=5*10^9 byte) - encrypt them using a symmetric key (password - no GPG keys used),
- upload them to Backblaze B2 to a configurable path (default: hostname) under a configurable bucket in parallel,
- delete the local copy of the backup and
- remove all remote backups at B2 except the one it just uploaded.
Every step is checksummed and the checksum file is uploaded as well.
After all chunk uploads are finished, the local copy of the backup is deleted. Therefore you only need twice the size of the largest VM's backup file on the host. The backup is read and written multiple times, so using different storage devices for VMs and backup is a good idea.
-
Get a Backblaze account and generate an application key along with a bucket.
-
Install git and download this repository:
apt-get install -y git git clone https://github.com/padelt/vzdump-plugin-b2.git /usr/local/bin/vzdump-plugin-b2Alternatively transfer it manually to the server.
-
Provide a recent version of jq:
wget -O /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 chmod +x /usr/local/bin/jq -
Make a copy of
upload-b2.config.templateand edit it to your parameters. If you put it anywhere else than the filenameupload-b2.configin the same directory asvzdump-plugin-upload-b2.sh, also edit that script and makeCONFIG_FILEpoint to it. -
In that config file, note GPG_PASSPHRASE_FILE. That should point to a file containing your long, random and secret passphrase. You can use this do generate one:
test -r /root/vzdump-passphrase.txt || dd if=/dev/random bs=1 count=48 2>/dev/null | hexdump -v -e '"%02X"' > /root/vzdump-passphrase.txtRemember and save that string - your backups are unusable without it!
-
Make
vzdumpaware of the script by adding a line to/etc/vzdump.conf:echo "script: /usr/local/bin/vzdump-plugin-b2/vzdump-plugin-upload-b2.sh" >> /etc/vzdump.conf -
Make available the
b2command-line utility as documented here:wget -O /usr/local/bin/b2 https://docs.backblaze.com/public/b2_src_code_bundles/b2 chmod +x /usr/local/bin/b2
A manual backup of a small VM is a good idea to test general functionality. Look at the log output for hints what may have gone wrong.