I`m using bacula + s3fs to make backups on S3 but it doesn`t support Glacier. Is there something like Bacula with Glacier support?
I need
different backup polices (FULL,INCREMENTAL ... e.t.c.)
edit backup jobs from single place
monitoring of backup job status
P.S. Backup of remoted servers will be good :)
This question appears to be off-topic. Especially if you expect:
Your question would receive more attention on: Server Fault
I recommend to use bacula because:
We are using a python script wich get fired periodically using cron. You may run the script also after any job using RunScript.
The main concept is to use each volume once. After the desired volumes are marked as used, upload them to amazon glacier.
Our script does:
bacula.Pools
. We only upload full backups.Media
with VolStatus=Used
and PoolId
is one of the previousMediaArchive
) wich keeps the state of processed glacier uploads.Media.VolumeName
using boto (create_archive_from_file)MediaArchive
. Otherwise restart the upload.