You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
680 B
24 lines
680 B
10 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# MySQL Backup Script
|
||
|
# Dumps mysql databases to a file for another backup tool to pick up.
|
||
|
#
|
||
|
# MySQL code:
|
||
|
# GRANT SELECT, RELOAD, LOCK TABLES ON *.* TO 'user'@'localhost'
|
||
|
# IDENTIFIED BY 'password';
|
||
|
# FLUSH PRIVILEGES;
|
||
|
#
|
||
|
##### START CONFIG ###################################################
|
||
|
|
||
|
USER=<%= backupuser %>
|
||
|
PASS=<%= backuppassword %>
|
||
|
DIR=<%= backupdir %>
|
||
|
|
||
|
##### STOP CONFIG ####################################################
|
||
|
PATH=/usr/bin:/usr/sbin:/bin:/sbin
|
||
|
|
||
|
find $DIR -mtime +30 -exec rm -f {} \;
|
||
|
mysqldump -u${USER} -p${PASS} --opt --flush-logs --single-transaction \
|
||
|
--all-databases | bzcat -zc > ${DIR}/mysql_backup_`date +%Y%m%d-%H%M%S`.sql.bz2
|
||
|
|