Filip Pytloun | 311d79c | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 1 | |
| 2 | =========== |
| 3 | Backupninja |
| 4 | =========== |
| 5 | |
| 6 | Backupninja allows you to coordinate system backup by dropping a few simple configuration files into /etc/backup.d/. Most programs you might use for making backups don't have their own configuration file format. |
| 7 | |
| 8 | Backupninja provides a centralized way to configure and schedule many different backup utilities. It allows for secure, remote, incremental filesytem backup (via rdiff-backup), compressed incremental data, backup system and hardware info, encrypted remote backups (via duplicity), safe backup of MySQL/PostgreSQL databases, subversion or trac repositories, burn CD/DVDs or create ISOs, incremental rsync with hardlinking. |
| 9 | |
| 10 | Sample pillars |
| 11 | ============== |
| 12 | |
| 13 | Backup client with ssh/rsync remote target |
| 14 | |
| 15 | backupninja: |
| 16 | client: |
| 17 | enabled: true |
| 18 | target: |
| 19 | engine: rsync |
| 20 | host: 10.10.10.208 |
| 21 | user: backupninja |
| 22 | |
| 23 | Backup client with s3 remote target |
| 24 | |
| 25 | backupninja: |
| 26 | client: |
| 27 | enabled: true |
| 28 | target: |
| 29 | engine: s3 |
| 30 | host: s3.domain.com |
| 31 | bucket: bucketname |
| 32 | |
| 33 | Backup server rsync/rdiff |
| 34 | |
| 35 | backupninja: |
| 36 | server: |
| 37 | enabled: true |
| 38 | rdiff: true |
| 39 | keys: |
| 40 | - client1.domain.com |
| 41 | |
| 42 | Read more |
| 43 | ========= |
| 44 | |
| 45 | * https://labs.riseup.net/code/projects/backupninja/wiki/Configuration |
| 46 | * http://www.debian-administration.org/articles/351 |
| 47 | * http://duncanlock.net/blog/2013/08/27/comprehensive-linux-backups-with-etckeeper-backupninja/ |
| 48 | * https://github.com/riseuplabs/puppet-backupninja |
| 49 | * http://www.ushills.co.uk/2008/02/backup-with-backupninja.html |