Holland

Aus crazylinux.de
Version vom 13. August 2014, 22:15 Uhr von Jonathan (Diskussion | Beiträge) (docs)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Zur Navigation springen Zur Suche springen

Holland is an Open Source backup framework originally developed at Rackspace and written in Python. Its goal is to help facilitate backing up databases with greater configurability, consistency, and ease. Holland is capable of backing up other types of data, too. Because of its plugin structure, Holland can be used to backup anything you want by whatever means you want.

Notable Features

  • Pluggable Framework
  • Supports Multiple Backup Sets
  • Database and Table Filtering (Using GLOBs)
  • Auto-Detection of Transactional DBs
  • Safe use of –single-transaction with mysqldumpIn-Line and Pluggable Compression
  • Backups Suitable for Point-In-Time Recovery / Replication
  • MySQL + LVM Snapshot and Logical Backups
  • PostgreSQL backups using pgdum

Config

#/etc/holland/holland.conf
...
## Top level directory where backups are held
backup_directory = /xxx/backup/holland
...


#/etc/holland/providers/mysqldump.conf
...
## Whether to run a separate mysqldump for each database. Note that while
## this may initially sound like a good idea, it is far simpler to backup
## all databases in one file, although that makes the restore process
## more difficult when only certain data needs to be restored.
file-per-database   = yes
...

## MySQL connection settings. Note that Holland will try ot read from
## the provided files defined in the 'defaults-extra-file', although 
## explicitly defining the connection inforamtion here will take precedence.
[mysql:client]
defaults-extra-file  = /etc/mysql/debian.cnf,/root/.my.cnf,~/.my.cnf,


#/etc/holland/backupsets/default.conf
...
backups-to-keep = 3
...


http://www.hollandbackup.org/ http://docs.hollandbackup.org/commands.html