Backup And Restore Ceph for Proxmox VE
More information about eve4pve-barc
Ceph Documentation
Incremental snapshots with rbd
rdb – manage rados block device (rbd) images
______ __ _ _ ________
/ ____/___ / /____ _________ _____(_)_______ | | / / ____/
/ __/ / __ \/ __/ _ \/ ___/ __ \/ ___/ / ___/ _ \ | | / / __/
/ /___/ / / / /_/ __/ / / /_/ / / / (__ ) __/ | |/ / /___
/_____/_/ /_/\__/\___/_/ / .___/_/ /_/____/\___/ |___/_____/
/_/
EnterpriseVE Backup And Restore Ceph for Proxmox VE (Made in Italy)
Usage:
eve4pve-barc <COMMAND> [ARGS] [OPTIONS]
eve4pve-barc help
eve4pve-barc version
eve4pve-barc create --vmid=<string> --label=<string> --path=<string> --keep=<integer>
--script=<string> --syslog
eve4pve-barc destroy --vmid=<string> --label=<string>
eve4pve-barc enable --vmid=<string> --label=<string>
eve4pve-barc disable --vmid=<string> --label=<string>
eve4pve-barc backup --vmid=<string> --label=<string> --path=<string> --keep=<integer>
--script=<string> --syslog
eve4pve-barc restore --vmid=<string> --label=<string> --path=<string>
--script=<string> --syslog
eve4pve-barc status --vmid=<string> --label=<string> --path=<string>
eve4pve-barc clean --vmid=<string> --label=<string> --path=<string> --keep=<integer>
Commands:
version Show version program.
help Show help program.
create Create backup job from scheduler.
destroy Remove backup job from scheduler.
enable Enable backup job from scheduler.
disable Disable backup job from scheduler.
status Get list of all backups.
clean Clear all backups.
backup Will backup one time.
restore Will restore one time.
Options:
--vmid=string The ID of the VM, comma separated (es. 100,101,102),
'all' for all known guest systems.
--label=string Is usually 'hourly', 'daily', 'weekly', or 'monthly'.
--path=string Path destination backup.
--keep=integer Specify the number of backup which should will keep, Default 1.
--script=string Use specified hook script.
Es. /usr/share/doc/eve4pve-barc/examples/script-hook.sh
--syslog Write messages into the system log.
Report bugs to <support@enterpriseve.com>.
Backup And Restore Ceph for Proxmox VE with retention. This solution implement backup for Ceph cluster exporting to specific directory. The mechanism using Ceph snapshot,export and export differential. In backup export image and config file VM/CT.
- For KVM and LXC
- Can keep multiple backup
- Syslog integration
- Multiple schedule VM using --label (es. daily,monthly)
- Hook script
- Multiple VM single execution
- Copy config and firewall files
Download package eve4pve-barc_?.?.?-?_all.deb, on your Proxmox VE host and install:
wget https://github.com/EnterpriseVE/eve4pve-barc/releases/latest
dpkg -i eve4pve-barc_?.?.?-?_all.deb
This tool need basically no configuration.
root@pve1:~# eve4pve-barc backup --vmid=111 --label='daily' --path=/mnt/bckceph --keep=2
This command backup VM 111. The --keep tells that it should be kept 2 backup, if there are more than 2 backup, the 3 one will be erased (sorted by creation time).
root@pve1:~# eve4pve-barc create --vmid=111 --label='daily' --path=/mnt/bckceph --keep=5
root@pve1:~# eve4pve-barc destroy --vmid=111 --label='daily' --path=/mnt/bckceph --keep=5
root@pve1:~# eve4pve-barc disable --vmid=111 --label='daily'
root@pve1:~# eve4pve-barc enable --vmid=111 --label='daily'
Show status backup in directory destination.
root@pve1:~# eve4pve-barc status --vmid=111 --label='daily' --path=/mnt/bckceph
TYPE BACKUP IMAGE
img 17-01-08 01:30:45 pool-rbd.vm-103-disk-1
diff 17-01-10 11:22:47 pool-rbd.vm-103-disk-1
diff 17-01-10 11:31:10 pool-rbd.vm-103-disk-1
diff 17-01-10 11:32:04 pool-rbd.vm-103-disk-1
diff 17-01-10 11:46:16 pool-rbd.vm-103-disk-1
diff 17-01-10 11:47:30 pool-rbd.vm-103-disk-1
img 17-01-10 11:46:16 pool-rbd.vm-103-disk-2
diff 17-01-10 11:47:30 pool-rbd.vm-103-disk-2
root@pve1:~# eve4pve-barc restore --vmid=111 --label='daily' --path=/mnt/bckceph
This command restore single image.
Start restore process
Inital import 170108013045.pool-rbd.vm-111-disk-1.img
Importing image: 100% complete...done.
Differential /mnt/bckceph/barc/111/daily/170110112247.pool-rbd.vm-111-disk-1.diff
Importing image diff: 100% complete...done.
Differential /mnt/bckceph/barc/111/daily/170110113110.pool-rbd.vm-111-disk-1.diff
Importing image diff: 100% complete...done.
Differential /mnt/bckceph/barc/111/daily/170110113204.pool-rbd.vm-111-disk-1.diff
Importing image diff: 100% complete...done.
Differential /mnt/bckceph/barc/111/daily/170110114616.pool-rbd.vm-111-disk-1.diff
Importing image diff: 100% complete...done.
Differential /mnt/bckceph/barc/111/daily/170110114730.pool-rbd.vm-111-disk-1.diff
Importing image diff: 100% complete...done.
Removing all snapshots: 100% complete...done.
Backup pool-rbd.vm-111-disk-1 restored in pool-rbd/vm-111-disk-1-restored with success!
Consider to manually create VM/CT and change config file from backup adapting restored image.
You can edit the configuration in /etc/cron.d/eve4pve-barc or destroy the job and create it new.