Skip to content

Quick Start

This example shows how to back up a ZFS volume to S3.

  1. Create a .bbackup.yaml in your home directory.
stages:
s3:
type: s3
bucket: <bucket>
region: <region>
accessKey: <accessKey>
accessSecret: <accessSecret>
zfs:
type: zfs
remote: s3
  1. Add a volume to a backup group.
Terminal window
zfs-backup-blob group add-volume --volume zfs-pool/volume1
  1. Create full snapshot of volumes belonging to the backup group.
Terminal window
zfs-backup-blob group snapshot --type full
  1. Sync snapshots to remote storage (s3 in this case).
Terminal window
zfs-backup-blob group sync
  1. Verify snapshots are backed up in remote blob storage.
Terminal window
zfs-backup-blob backup list --volume zfs-pool/volume1