obackup/README.md

75 lines
4.6 KiB
Markdown
Raw Normal View History

2013-06-12 19:55:16 +02:00
obackup
=======
2013-06-16 14:11:30 +02:00
A small robust file & database backup script tailored for multiple virtualhost backups locally or remotely via ssh.
Yet it is very versatile and actually works for a lot of backup tasks.
2013-06-12 20:25:25 +02:00
2013-06-12 21:08:07 +02:00
## About
2013-06-12 20:25:25 +02:00
OBackup is designed from ground to make the backup process as reliable as possible.
It divides the whole backup process into tasks, allowing each task to execute for a certain amount of time.
If a task doesn't finish in time, it's stopped and the next task is processed.
Before a task gets stopped, a first warning message is generated telling the task takes too long.
2013-06-12 21:08:07 +02:00
Every action gets logged, and at the end of the backup process, if there was a warning,
a stopped task or an error an alert email will be sent.
Remote backups are initiated from the backup server instead of the production server, so hacked servers won't get ssh access to the backup server.
2013-06-13 19:14:21 +02:00
OBackup can enumerate and backup all MariaDB / MySQL databases present on a server
2013-06-13 08:24:25 +02:00
It can also enumarate all subdirectories of a given path and process them as separate tasks (usefull for multiple vhosts).
It will do several checks before launching a backup like execution checks, dryruns,
checking backup size and available local disk space.
2013-06-12 21:08:07 +02:00
Obackup will work well to backup to a snapshot aware filesystem like ZFS or btrfs.
In case you don't work with one of these, it may also rotate backups for you.
2013-06-16 14:11:30 +02:00
Obackup can execute local and remote commands before and after backup execution, thus providing possibilites to handle snapshots (see https://github.com/deajan/zsnap for a zfs snapshot management script).
2013-06-12 21:08:07 +02:00
As of today, obackup has been tested successfully on RHEL / CentOS 5, CentOS 6, Debian 6.0.7 and Linux Mint 14
2013-06-16 14:11:30 +02:00
but should basically run on your favorite linux flavor. It relies on well known programs like rsync, ssh, mysqldump along with other great GNU coreutils.
Project is customizable, and one can easily modify its code as it weights only 1 KLOC. Obackup is distributed under BSD Licence which gives most freedom to include it in your own code.
Feel free to drop me a mail for limited support in my free time.
2013-06-12 21:08:07 +02:00
## Installation
You can download the latest obackup script from authors website.
You may also clone this git which will maybe have some more recent build.
2013-06-12 21:08:07 +02:00
2013-06-13 08:24:25 +02:00
$ git clone git://github.com/deajan/obackup.git
$ chmod +x ./obackup.sh
2013-06-12 21:08:07 +02:00
Once you have grabbed a copy of Obackup, just edit the config file with your favorite text editor to setup your environment and you're ready to run. A detailled documentation can be found in the DOCUMENTATION.md file.
You can run multiple instances of obackup scripts with different backup environments. Just create another configuration file, edit it's environment and you're ready to run concurrently.
2013-06-12 21:08:07 +02:00
2013-06-15 14:55:50 +02:00
Performing remote backups requires you to create RSA private / public key pair. Please see documentation for further information.
Performing mysql backups requires to create a mysql user with SELECT rights on all databases. Please see documentation for further information.
Performing backup with SUDO_EXEC option requires to configure sudoers file to allow some commands without password. Keep in mind that running backup as superuser might be a security risk. You should generally prefer a read only enabled user. Please see documentation for further information.
2013-06-13 19:14:21 +02:00
## Usage
MariaDB / MySQL backups are consistent because dumps are done with the --single-transaction option.
File backups can be done directly if data won't change while a backup is going on (generally true on vhosts), but backing up a snapshot of the actual data is preferable as it will stay consistent. LVM, zfs or btrfs snapshots will do fine.
2013-06-13 19:14:21 +02:00
You may try your setup by specifying the "--dry" parameter which will run a simulation of what will be done.
2013-06-13 19:14:21 +02:00
$ ./obackup.sh path/to/config/file --dry
$ ./obackup.sh path/to/config/file
2013-06-13 19:14:21 +02:00
One you're happy with a test run, you may run obackup as a cron task with the "--silent" parameter so output will not be written to stdout.
All backup activity is logged to "/var/log/obackup_backupname.log".
2013-06-13 19:14:21 +02:00
## Final words
2013-06-13 19:14:21 +02:00
Backup tasks aren't always reliable, connectivity loss, insufficient disk space, hacked computers with tons of mangas to backup... Anything can happen. Obackup will sent your a warning email for every issue it can handle.
Nevertheless, you should assure yourself that your backup tasks will get done the way you meant it. Also, a backup isn't valuable until you're sure it's restoration will be a success. Try to restore your backups to check whether everything is okay. Backups will keep file permissions and owners, but may loose ACLs if destination file system won't handle them.
2013-06-13 19:14:21 +02:00
2013-06-12 21:08:07 +02:00
## Author
Orsiris "Ozy" de Jong.
ozy@badministrateur.com
2013-06-12 20:25:25 +02:00
2013-06-12 21:08:07 +02:00