2005-12-28 21:19:29 +01:00
|
|
|
# -*- 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
|
2005-09-15 20:36:23 +02:00
|
|
|
getconf ignores
|
2007-11-02 01:52:55 +01:00
|
|
|
getconf nodata
|
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
|
2008-12-09 12:40:03 +01:00
|
|
|
getconf sqldumpoptions "--lock-tables --complete-insert --add-drop-table --quick --quote-names"
|
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
|
|
|
|
|
2005-09-15 20:36:23 +02:00
|
|
|
|
2006-01-19 22:58:03 +01:00
|
|
|
# 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
|
2006-02-02 21:28:28 +01:00
|
|
|
if [ -n "$vsname" ]; then
|
2006-01-19 22:58:03 +01:00
|
|
|
# does it exist ?
|
|
|
|
if ! vservers_exist "$vsname" ; then
|
|
|
|
fatal "The vserver given in vsname ($vsname) does not exist."
|
|
|
|
fi
|
|
|
|
# is it running ?
|
2008-06-24 17:55:10 +02:00
|
|
|
vservers_running $vsname || fatal "The vserver $vsname is not running."
|
2006-01-19 22:58:03 +01:00
|
|
|
# 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
|
2005-12-27 18:36:21 +01:00
|
|
|
|
|
|
|
## Prepare ignore part of the command
|
|
|
|
## This only works for mysqldump at the moment
|
|
|
|
|
|
|
|
ignore=''
|
2007-11-02 01:52:55 +01:00
|
|
|
for i in $ignores $nodata; do
|
2005-12-27 18:36:21 +01:00
|
|
|
ignore="$ignore --ignore-table=$i"
|
|
|
|
done
|
2005-05-24 21:27:43 +02:00
|
|
|
|
2005-12-27 18:36:46 +01: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
|
|
|
|
2006-01-19 22:58:03 +01: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
|
2006-08-03 19:38:00 +02:00
|
|
|
# 3. specify the config file with --defaults-extra-file
|
2005-06-02 00:44:04 +02:00
|
|
|
# (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=""
|
2005-12-27 18:37:44 +01:00
|
|
|
|
2005-12-27 18:35:54 +01:00
|
|
|
if [ "$dbusername" != "" -a "$dbpassword" != "" ]
|
|
|
|
then
|
2006-01-19 22:58:03 +01:00
|
|
|
if [ $usevserver = yes ]
|
2005-12-27 18:35:54 +01:00
|
|
|
then
|
2007-02-23 19:04:04 +01:00
|
|
|
vhome=`$VSERVER $vsname exec getent passwd "root" | @AWK@ -F: '{print $6}'`
|
2005-12-27 18:37:44 +01:00
|
|
|
home="$vroot$vhome"
|
2005-12-27 18:35:54 +01:00
|
|
|
else
|
2007-02-23 19:04:04 +01:00
|
|
|
home=`getent passwd "root" | @AWK@ -F: '{print $6}'`
|
2005-12-27 18:35:54 +01:00
|
|
|
fi
|
2005-12-27 18:37:44 +01:00
|
|
|
|
2005-12-27 18:35:54 +01:00
|
|
|
[ -d $home ] || fatal "Can't find root's home directory ($home)."
|
2005-12-27 18:37:44 +01:00
|
|
|
|
2005-12-27 18:35:54 +01:00
|
|
|
mycnf="$home/.my.cnf"
|
2005-12-27 18:37:44 +01:00
|
|
|
|
2005-12-27 18:36:07 +01:00
|
|
|
if [ -f $mycnf ]
|
|
|
|
then
|
2005-12-27 18:35:54 +01:00
|
|
|
# rename temporarily
|
|
|
|
tmpcnf="$home/my.cnf.disable"
|
|
|
|
debug "mv $mycnf $tmpcnf"
|
|
|
|
mv $mycnf $tmpcnf
|
|
|
|
fi
|
2005-12-27 18:37:44 +01:00
|
|
|
|
2005-12-27 18:35:54 +01:00
|
|
|
oldmask=`umask`
|
|
|
|
umask 077
|
|
|
|
cat > $mycnf <<EOF
|
2004-12-09 05:37:12 +01:00
|
|
|
# auto generated backupninja mysql conf
|
|
|
|
[mysql]
|
2005-12-27 18:37:44 +01:00
|
|
|
host=$dbhost
|
2004-12-09 05:37:12 +01:00
|
|
|
user=$dbusername
|
2005-06-09 22:02:28 +02:00
|
|
|
password="$dbpassword"
|
2004-12-09 05:37:12 +01:00
|
|
|
|
|
|
|
[mysqldump]
|
2005-12-27 18:37:44 +01:00
|
|
|
host=$dbhost
|
2004-12-09 05:37:12 +01:00
|
|
|
user=$dbusername
|
2005-06-09 22:02:28 +02:00
|
|
|
password="$dbpassword"
|
2004-12-09 05:37:12 +01:00
|
|
|
|
|
|
|
[mysqlhotcopy]
|
2005-12-27 18:37:44 +01:00
|
|
|
host=$dbhost
|
2004-12-09 05:37:12 +01:00
|
|
|
user=$dbusername
|
2005-06-09 22:02:28 +02:00
|
|
|
password="$dbpassword"
|
2004-12-09 05:37:12 +01:00
|
|
|
EOF
|
|
|
|
umask $oldmask
|
2006-01-19 22:58:03 +01:00
|
|
|
if [ $usevserver = yes ]
|
2005-12-27 18:37:44 +01:00
|
|
|
then
|
2006-08-03 19:38:00 +02:00
|
|
|
defaultsfile="--defaults-extra-file=$vhome/.my.cnf"
|
2005-12-27 18:37:44 +01:00
|
|
|
else
|
2006-08-03 19:38:00 +02:00
|
|
|
defaultsfile="--defaults-extra-file=$mycnf"
|
2005-12-27 18:37:44 +01:00
|
|
|
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
|
2005-12-27 18:38:07 +01:00
|
|
|
if [ "$user" == "" ]; then
|
|
|
|
user=root;
|
2006-08-03 19:38:00 +02:00
|
|
|
defaultsfile="--defaults-extra-file=$configfile"
|
2005-12-27 18:38:07 +01:00
|
|
|
else
|
|
|
|
userset=true;
|
2006-01-19 22:58:03 +01:00
|
|
|
if [ $usevserver = yes ]
|
2005-12-27 18:38:07 +01:00
|
|
|
then
|
2007-02-23 19:04:04 +01:00
|
|
|
vuserhome=`$VSERVER $vsname exec getent passwd "$user" | @AWK@ -F: '{print $6}'`
|
2005-12-27 18:38:07 +01:00
|
|
|
if [ $? -eq 2 ]
|
|
|
|
then
|
|
|
|
fatal "User $user not found in /etc/passwd"
|
|
|
|
fi
|
|
|
|
userhome="$vroot$vuserhome"
|
|
|
|
else
|
2007-02-23 19:04:04 +01:00
|
|
|
userhome=`getent passwd "$user" | @AWK@ -F: '{print $6}'`
|
2005-12-27 18:38:07 +01:00
|
|
|
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"
|
2006-08-03 19:38:00 +02:00
|
|
|
defaultsfile="--defaults-extra-file=$userhome/.my.cnf"
|
2005-12-27 18:38:07 +01:00
|
|
|
debug "using $defaultsfile"
|
|
|
|
fi
|
|
|
|
|
2005-06-02 00:44:04 +02:00
|
|
|
#######################################################################
|
2004-12-09 05:37:12 +01:00
|
|
|
## HOT COPY
|
|
|
|
|
2005-12-27 18:37:18 +01:00
|
|
|
if [ "$hotcopy" == "yes" ]
|
|
|
|
then
|
|
|
|
info "Initializing hotcopy method"
|
|
|
|
if [ "$databases" == "all" ]
|
|
|
|
then
|
2006-01-19 22:58:03 +01:00
|
|
|
if [ $usevserver = yes ]
|
2005-12-27 18:37:18 +01:00
|
|
|
then
|
2005-12-27 18:37:54 +01:00
|
|
|
info "dbhost: $dbhost"
|
|
|
|
execstr="$VSERVER $vsname exec $MYSQLHOTCOPY -h $dbhost --quiet --allowold --regexp /.\*/./.\*/ $hotdir"
|
2005-12-27 18:37:18 +01:00
|
|
|
else
|
|
|
|
execstr="$MYSQLHOTCOPY --quiet --allowold --regexp /.\*/./.\*/ $hotdir"
|
|
|
|
fi
|
2006-04-08 22:52:51 +02:00
|
|
|
debug "su $user -c \"$execstr\""
|
2005-12-27 18:37:18 +01:00
|
|
|
if [ ! $test ]
|
|
|
|
then
|
2006-04-08 12:31:14 +02:00
|
|
|
output=`su $user -c "$execstr" 2>&1`
|
2005-12-27 18:37:18 +01:00
|
|
|
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
|
2006-01-19 22:58:03 +01:00
|
|
|
if [ $usevserver = yes ]
|
2005-05-24 21:27:43 +02:00
|
|
|
then
|
2005-12-27 18:37:18 +01:00
|
|
|
execstr="$VSERVER $vsname exec $MYSQLHOTCOPY --allowold $db $hotdir"
|
2005-05-24 21:27:43 +02:00
|
|
|
else
|
2005-12-27 18:37:18 +01:00
|
|
|
execstr="$MYSQLHOTCOPY --allowold $db $hotdir"
|
2005-05-24 21:27:43 +02:00
|
|
|
fi
|
2006-04-08 22:52:51 +02:00
|
|
|
debug 'su $user -c \"$execstr\"'
|
2005-12-27 18:37:18 +01:00
|
|
|
if [ ! $test ]
|
|
|
|
then
|
2006-04-08 12:31:14 +02:00
|
|
|
output=`su $user -c "$execstr" 2>&1`
|
2004-12-09 05:37:12 +01:00
|
|
|
code=$?
|
2005-12-27 18:37:18 +01:00
|
|
|
if [ "$code" == "0" ]
|
|
|
|
then
|
2005-01-03 23:22:58 +01:00
|
|
|
debug $output
|
2005-12-27 18:37:18 +01:00
|
|
|
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
|
2005-12-27 18:37:18 +01:00
|
|
|
warning "Failed to hotcopy mysql database $db"
|
2004-12-09 05:37:12 +01:00
|
|
|
fi
|
|
|
|
fi
|
2005-12-27 18:37:18 +01:00
|
|
|
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
|
|
|
|
|
2005-12-27 18:37:18 +01:00
|
|
|
if [ "$sqldump" == "yes" ]
|
|
|
|
then
|
|
|
|
info "Initializing SQL dump method"
|
|
|
|
if [ "$databases" == "all" ]
|
|
|
|
then
|
2006-01-19 22:58:03 +01:00
|
|
|
if [ $usevserver = yes ]
|
2005-12-27 18:37:18 +01:00
|
|
|
then
|
2006-03-25 21:14:03 +01:00
|
|
|
debug 'echo show databases | $VSERVER $vsname exec su $user -c \"$MYSQL $defaultsfile\" | grep -v Database'
|
2006-04-08 12:31:14 +02:00
|
|
|
databases=`echo 'show databases' | $VSERVER $vsname exec su $user -c "$MYSQL $defaultsfile" | grep -v Database`
|
2005-12-27 18:37:44 +01:00
|
|
|
if [ $? -ne 0 ]
|
|
|
|
then
|
2006-12-13 06:36:41 +01:00
|
|
|
fatal "Authentication problem, maybe user/password is wrong or mysqld is not running?"
|
2005-12-27 18:37:44 +01:00
|
|
|
fi
|
2005-12-27 18:37:18 +01:00
|
|
|
else
|
2007-11-20 02:28:49 +01:00
|
|
|
databases=$(su $user -c "$MYSQL $defaultsfile -N -B -e 'show databases'" | sed 's/|//g;/\+----/d')
|
2005-12-27 18:37:18 +01:00
|
|
|
if [ $? -ne 0 ]
|
|
|
|
then
|
2006-12-13 06:36:41 +01:00
|
|
|
fatal "Authentication problem, maybe user/password is wrong or mysqld is not running?"
|
2005-05-24 21:27:43 +02:00
|
|
|
fi
|
2004-12-09 05:37:12 +01:00
|
|
|
fi
|
2007-11-02 01:52:55 +01:00
|
|
|
fi
|
2004-12-09 05:37:12 +01:00
|
|
|
|
2005-12-27 18:37:18 +01:00
|
|
|
for db in $databases
|
|
|
|
do
|
2008-12-09 12:40:03 +01:00
|
|
|
DUMP_BASE="$MYSQLDUMP $defaultsfile $sqldumpoptions"
|
2007-11-02 01:52:55 +01:00
|
|
|
|
|
|
|
# Dumping structure and data
|
|
|
|
DUMP="$DUMP_BASE $ignore $db"
|
|
|
|
|
|
|
|
# If requested, dump only the table structure for this database
|
|
|
|
if echo "$nodata" | grep -E '(^|[[:space:]])'"$db\." >/dev/null
|
|
|
|
then
|
|
|
|
# Get the structure of the tables, without data
|
|
|
|
DUMP_STRUCT="$DUMP_BASE --no-data $db"
|
|
|
|
for qualified_table in $nodata
|
|
|
|
do
|
|
|
|
table=$( expr match "$qualified_table" "$db\.\([^\w]*\)" )
|
|
|
|
DUMP_STRUCT="$DUMP_STRUCT $table"
|
|
|
|
done
|
|
|
|
DUMP="( $DUMP; $DUMP_STRUCT )"
|
|
|
|
fi
|
2006-01-19 22:58:03 +01:00
|
|
|
if [ $usevserver = yes ]
|
2005-05-24 21:27:43 +02:00
|
|
|
then
|
2006-12-13 06:36:41 +01:00
|
|
|
# Test to make sure mysqld is running, if it is not sqldump will not work
|
2009-01-12 23:47:30 +01:00
|
|
|
$VSERVER $vsname exec su $user -c "$MYSQLADMIN $defaultsfile ping 2>&1 >/dev/null"
|
2006-12-13 06:36:41 +01:00
|
|
|
if [ $? -ne 0 ]; then
|
2009-01-12 23:47:30 +01:00
|
|
|
fatal "mysqld doesn't appear to be running!"
|
2006-12-13 06:36:41 +01:00
|
|
|
fi
|
2006-06-10 02:25:16 +02:00
|
|
|
if [ "$compress" == "yes" ]; then
|
2007-11-02 01:52:55 +01:00
|
|
|
execstr="$VSERVER $vsname exec $DUMP | $GZIP > $vroot$dumpdir/${db}.sql.gz"
|
2006-06-10 02:25:16 +02:00
|
|
|
else
|
2007-11-02 01:52:55 +01:00
|
|
|
execstr="$VSERVER $vsname exec $DUMP -r $vroot$dumpdir/${db}.sql"
|
2006-06-10 02:25:16 +02:00
|
|
|
fi
|
2005-05-24 21:27:43 +02:00
|
|
|
else
|
2006-12-13 06:36:41 +01:00
|
|
|
# Test to make sure mysqld is running, if it is not sqldump will not work
|
2009-01-12 23:47:30 +01:00
|
|
|
su $user -c "$MYSQLADMIN $defaultsfile ping 2>&1 >/dev/null"
|
2006-12-13 06:36:41 +01:00
|
|
|
if [ $? -ne 0 ]; then
|
2009-01-12 23:47:30 +01:00
|
|
|
fatal "mysqld doesn't appear to be running!"
|
2006-12-13 06:36:41 +01:00
|
|
|
fi
|
2006-06-10 02:25:16 +02:00
|
|
|
if [ "$compress" == "yes" ]; then
|
2007-11-02 01:52:55 +01:00
|
|
|
execstr="$DUMP | $GZIP > $dumpdir/${db}.sql.gz"
|
2006-06-10 02:25:16 +02:00
|
|
|
else
|
2007-11-02 01:52:55 +01:00
|
|
|
execstr="$DUMP -r $dumpdir/${db}.sql"
|
2006-06-10 02:25:16 +02:00
|
|
|
fi
|
2005-05-24 21:27:43 +02:00
|
|
|
fi
|
2006-04-08 22:52:51 +02:00
|
|
|
debug "su $user -c \"$execstr\""
|
2005-12-27 18:37:18 +01:00
|
|
|
if [ ! $test ]
|
|
|
|
then
|
2006-04-08 12:31:14 +02:00
|
|
|
output=`su $user -c "$execstr" 2>&1`
|
2004-12-09 05:37:12 +01:00
|
|
|
code=$?
|
2005-12-27 18:37:18 +01:00
|
|
|
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
|
2006-08-11 15:46:57 +02:00
|
|
|
fi
|
2004-12-09 05:37:12 +01:00
|
|
|
|
2005-06-01 20:50:22 +02:00
|
|
|
# clean up tmp config file
|
2006-03-07 19:40:08 +01:00
|
|
|
if [ "$dbusername" != "" -a "$dbpassword" != "" ]
|
2005-12-27 18:37:18 +01:00
|
|
|
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
|
2005-12-27 18:37:18 +01:00
|
|
|
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
|