Difference between revisions of "AutoMysqlBackup"
(→Mailto) |
|||
Line 45: | Line 45: | ||
====Sizemail==== | ====Sizemail==== | ||
− | you can determine the size of mails sent | + | you can determine the size of mails sent (default is 8000 bytes). |
config setprop automysqlbackup Sizemail 8000 | config setprop automysqlbackup Sizemail 8000 | ||
Revision as of 23:28, 25 April 2013
Automysqlbackup
AutoMySQLBackup with a DB configuration will create Daily, Weekly and Monthly backups of one or more of your MySQL databases from one or more of your MySQL servers. At least there is no panel in the server-manager but the configuration is quite simple with few commands listed above, handle by "config setprop automysqlbackup".
Other Features include:
- Email notification of backups
- Backup Compression and Encryption
- Configurable backup rotation
- Incremental database backups
Maintainer
Installation
for the instant you have to download the rpm here and install it by the yum localinstall command
wget http yum localinstall
DB command option
backup directory
default is /root/backup/db
config setprop automysqlbackup Backupdir "path/to/other/folder"
you have to create your new backup directory
mkdir -p path/to/other/folder
Mailcontent
you can choose your type of mail send to the admin (log by default)
config setprop automysqlbackup Mailcontent "option"
- log : send only log file (default)
- files : send log file and sql files as attachments
- stdout : will simply output the log to the screen if run manually.
- quiet : Only send logs if an error occurs to the MAILADDR.
Mailto
you can choose the mail account where you sent your mails (default is admin).
config setprop automysqlbackup Mailto "foo@foo.com"
Sizemail
you can determine the size of mails sent (default is 8000 bytes).
config setprop automysqlbackup Sizemail 8000
RESTORING
In a root terminal
cd /root/backup/db/ and choose your backup gunzip file-name.sql.gz
Next you will need to use the mysql client to restore the DB from the sql file.
mysql database < /path/file.sql
NOTE: Make sure you use < and not > in the above command because you are piping the file.sql to mysql and not the other way around