backupninja/handlers/mysql

294 lines
7.7 KiB
Plaintext
Raw Normal View History

# -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
2004-12-09 05:37:12 +01:00
#
# mysql handler script for backupninja
#
getconf backupdir /var/backups/mysql
getconf databases all
getconf ignores
2004-12-09 05:37:12 +01:00
getconf dbhost localhost
2005-06-02 00:44:04 +02:00
getconf hotcopy no
2004-12-09 05:37:12 +01:00
getconf sqldump no
2005-06-02 00:44:04 +02:00
getconf compress yes
2005-05-24 21:27:43 +02:00
getconf vsname
2004-12-09 05:37:12 +01:00
2005-06-02 00:44:04 +02:00
# authentication:
getconf user
getconf dbusername
getconf dbpassword
getconf configfile /etc/mysql/debian.cnf
# Decide if the handler should operate on a vserver or on the host.
# In the former case, check that $vsname exists and is running.
local usevserver=no
local vroot
if [ $vservers_are_available = yes ]; then
if [ -n "$vsname" ]; then
# does it exist ?
if ! vservers_exist "$vsname" ; then
fatal "The vserver given in vsname ($vsname) does not exist."
fi
# is it running ?
$VSERVERINFO -q $vsname RUNNING
if [ $? -ne 0 ]; then
fatal "The vserver $vsname is not running."
fi
# everything ok
info "Using vserver '$vsname'."
usevserver=yes
vroot="$VROOTDIR/$vsname"
else
info "No vserver name specified, actions will be performed on the host."
fi
2005-05-24 21:27:43 +02:00
fi
## Prepare ignore part of the command
## This only works for mysqldump at the moment
ignore=''
for i in $ignores; do
ignore="$ignore --ignore-table=$i"
done
2005-05-24 21:27:43 +02:00
# create backup dirs, $vroot will be empty if no vsname was specified
# and we will instead proceed to operate on the host
2005-05-24 21:27:43 +02:00
[ -d $vroot$backupdir ] || mkdir -p $vroot$backupdir
[ -d $vroot$backupdir ] || fatal "Backup directory '$vroot$backupdir'"
2004-12-09 05:37:12 +01:00
hotdir="$backupdir/hotcopy"
dumpdir="$backupdir/sqldump"
2005-05-24 21:27:43 +02:00
if [ $usevserver = yes ]
2005-05-24 21:27:43 +02:00
then
[ "$sqldump" == "no" -o -d $vroot$dumpdir ] || $VSERVER $vsname exec mkdir -p $dumpdir
[ "$hotcopy" == "no" -o -d $vroot$hotdir ] || $VSERVER $vsname exec mkdir -p $hotdir
else
[ "$sqldump" == "no" -o -d $dumpdir ] || mkdir -p $dumpdir
[ "$hotcopy" == "no" -o -d $hotdir ] || mkdir -p $hotdir
fi
2004-12-09 05:37:12 +01:00
2005-06-02 00:44:04 +02:00
#######################################################################
## AUTHENTICATION
#
# one of three authentication methods:
# 1. setting the user, so that /home/user/.my.cnf is used.
# 2. specifying the user and password in the handler config,
# which generates a temporary .my.cnf in /root/.my.cnf
# 3. specify the config file with --defaults-file
# (this option DOESN'T WORK WITH MYSQLHOTCOPY)
#
2004-12-09 05:37:12 +01:00
# create .my.cnf
2005-06-01 20:50:22 +02:00
# only if dbusername and dbpassword specified.
2005-06-02 00:44:04 +02:00
# we create a tmp file because we don't want to
2005-06-01 20:50:22 +02:00
# specify the password on the command line.
2004-12-09 05:37:12 +01:00
2005-06-01 20:50:22 +02:00
defaultsfile=""
if [ "$dbusername" != "" -a "$dbpassword" != "" ]
then
if [ $usevserver = yes ]
then
vhome=`$VSERVER $vsname exec getent passwd "root" | awk -F: '{print $6}'`
home="$vroot$vhome"
else
home=`getent passwd "root" | awk -F: '{print $6}'`
fi
[ -d $home ] || fatal "Can't find root's home directory ($home)."
mycnf="$home/.my.cnf"
if [ -f $mycnf ]
then
# rename temporarily
tmpcnf="$home/my.cnf.disable"
debug "mv $mycnf $tmpcnf"
mv $mycnf $tmpcnf
fi
oldmask=`umask`
umask 077
cat > $mycnf <<EOF
2004-12-09 05:37:12 +01:00
# auto generated backupninja mysql conf
[mysql]
host=$dbhost
2004-12-09 05:37:12 +01:00
user=$dbusername
password="$dbpassword"
2004-12-09 05:37:12 +01:00
[mysqldump]
host=$dbhost
2004-12-09 05:37:12 +01:00
user=$dbusername
password="$dbpassword"
2004-12-09 05:37:12 +01:00
[mysqlhotcopy]
host=$dbhost
2004-12-09 05:37:12 +01:00
user=$dbusername
password="$dbpassword"
2004-12-09 05:37:12 +01:00
EOF
umask $oldmask
if [ $usevserver = yes ]
then
defaultsfile="--defaults-file=$vhome/.my.cnf"
else
defaultsfile="--defaults-file=$mycnf"
fi
2004-12-09 05:37:12 +01:00
fi
2005-06-01 20:50:22 +02:00
2006-01-19 22:58:56 +01:00
# if a user is not set, use $configfile, otherwise use $mycnf
if [ "$user" == "" ]; then
user=root;
defaultsfile="--defaults-file=$configfile"
else
userset=true;
if [ $usevserver = yes ]
then
vuserhome=`$VSERVER $vsname exec getent passwd "$user" | awk -F: '{print $6}'`
if [ $? -eq 2 ]
then
fatal "User $user not found in /etc/passwd"
fi
userhome="$vroot$vuserhome"
else
userhome=`getent passwd "$user" | awk -F: '{print $6}'`
if [ $? -eq 2 ]
then
fatal "User $user not found in /etc/passwd"
fi
fi
debug "User home set to: $userhome"
[ -f $userhome/.my.cnf ] || fatal "Can't find config file in $userhome/.my.cnf"
defaultsfile="--defaults-file=$userhome/.my.cnf"
debug "using $defaultsfile"
fi
2005-06-02 00:44:04 +02:00
#######################################################################
2004-12-09 05:37:12 +01:00
## HOT COPY
if [ "$hotcopy" == "yes" ]
then
info "Initializing hotcopy method"
if [ "$databases" == "all" ]
then
if [ $usevserver = yes ]
then
info "dbhost: $dbhost"
execstr="$VSERVER $vsname exec $MYSQLHOTCOPY -h $dbhost --quiet --allowold --regexp /.\*/./.\*/ $hotdir"
else
execstr="$MYSQLHOTCOPY --quiet --allowold --regexp /.\*/./.\*/ $hotdir"
fi
debug "su $user -c \"$execstr\""
if [ ! $test ]
then
output=`su $user -c "$execstr" 2>&1`
code=$?
if [ "$code" == "0" ]
then
debug $output
info "Successfully finished hotcopy of all mysql databases"
else
warning $output
warning "Failed to hotcopy all mysql databases"
fi
fi
else
for db in $databases
do
if [ $usevserver = yes ]
2005-05-24 21:27:43 +02:00
then
execstr="$VSERVER $vsname exec $MYSQLHOTCOPY --allowold $db $hotdir"
2005-05-24 21:27:43 +02:00
else
execstr="$MYSQLHOTCOPY --allowold $db $hotdir"
2005-05-24 21:27:43 +02:00
fi
debug 'su $user -c \"$execstr\"'
if [ ! $test ]
then
output=`su $user -c "$execstr" 2>&1`
2004-12-09 05:37:12 +01:00
code=$?
if [ "$code" == "0" ]
then
2005-01-03 23:22:58 +01:00
debug $output
info "Successfully finished hotcopy of mysql database $db"
2004-12-09 05:37:12 +01:00
else
2005-01-03 23:22:58 +01:00
warning $output
warning "Failed to hotcopy mysql database $db"
2004-12-09 05:37:12 +01:00
fi
fi
done
fi
2004-12-09 05:37:12 +01:00
fi
2005-06-02 00:44:04 +02:00
##########################################################################
2004-12-09 05:37:12 +01:00
## SQL DUMP
if [ "$sqldump" == "yes" ]
then
info "Initializing SQL dump method"
if [ "$databases" == "all" ]
then
if [ $usevserver = yes ]
then
debug 'echo show databases | $VSERVER $vsname exec su $user -c \"$MYSQL $defaultsfile\" | grep -v Database'
databases=`echo 'show databases' | $VSERVER $vsname exec su $user -c "$MYSQL $defaultsfile" | grep -v Database`
if [ $? -ne 0 ]
then
fatal "Authentication problem, maybe user/password is wrong"
fi
else
databases=`echo 'show databases' | su $user -c "$MYSQL $defaultsfile" | grep -v Database`
if [ $? -ne 0 ]
then
fatal "Authentication problem, maybe user/password is wrong"
2005-05-24 21:27:43 +02:00
fi
2004-12-09 05:37:12 +01:00
fi
fi
2004-12-09 05:37:12 +01:00
for db in $databases
do
if [ $usevserver = yes ]
2005-05-24 21:27:43 +02:00
then
if [ "$compress" == "yes" ]; then
execstr="$VSERVER $vsname exec $MYSQLDUMP $defaultsfile --lock-tables --complete-insert --add-drop-table --quick --quote-names $ignore $db | $GZIP > $vroot$dumpdir/${db}.sql.gz"
else
execstr="$VSERVER $vsname exec $MYSQLDUMP $defaultsfile --lock-tables --complete-insert --add-drop-table --quick --quote-names $ignore $db > $vroot$dumpdir/${db}.sql"
fi
2005-05-24 21:27:43 +02:00
else
if [ "$compress" == "yes" ]; then
execstr="$MYSQLDUMP $defaultsfile --lock-tables --complete-insert --add-drop-table --quick --quote-names $ignore $db | $GZIP > $dumpdir/${db}.sql.gz"
else
execstr="$MYSQLDUMP $defaultsfile --lock-tables --complete-insert --add-drop-table --quick --quote-names $ignore $db > $dumpdir/${db}.sql"
fi
2005-05-24 21:27:43 +02:00
fi
debug "su $user -c \"$execstr\""
if [ ! $test ]
then
output=`su $user -c "$execstr" 2>&1`
2004-12-09 05:37:12 +01:00
code=$?
if [ "$code" == "0" ]
then
2005-01-03 23:22:58 +01:00
debug $output
info "Successfully finished dump of mysql database $db"
2004-12-09 05:37:12 +01:00
else
2005-01-03 23:22:58 +01:00
warning $output
warning "Failed to dump mysql databases $db"
2004-12-09 05:37:12 +01:00
fi
fi
done
2005-06-01 20:50:22 +02:00
# clean up tmp config file
if [ "$dbusername" != "" -a "$dbpassword" != "" ]
then
2005-06-02 00:44:04 +02:00
## clean up tmp config file
2005-01-03 23:22:58 +01:00
debug "rm $mycnf"
2004-12-09 05:37:12 +01:00
rm $mycnf
if [ -f "$tmpcnf" ]
then
2005-06-02 00:44:04 +02:00
debug "mv $tmpcnf $mycnf"
mv $tmpcnf $mycnf
fi
2004-12-09 05:37:12 +01:00
fi
return 0