Am new to linux cron job, i am using mysql DB, my database name finaldb, i want to take this database every one hour,

I have folder called dailbackup, in this i have folder by date wise,in this each folder i have backup mysql db file

name like final_db_9.sql (this backup taken at morning 9 am), final_db_13.sql(this backup taken at noon 1pm, like that ,

this process at present am doing manually , is it possible to make it automation , any ideas, suggestions ,

link|improve this question

74% accept rate
feedback

5 Answers

up vote 3 down vote accepted

Create a PHP Script containing the following:

$dbFile = 'final_db'.date('H').'.sql.gz';
$dbHost = 'localhost'; // Database Host
$dbUser = 'username'; // Database Username
$dbPass = 'password'; // Database Password
exec( 'mysqldump --host="'.$dbHost.'" --user="'.$dbUser.'" --password="'.$dbPass.'" --add-drop-table "finaldb" | gzip > "'.$dbFile.'"' );
link|improve this answer
Wrapping it in a php script may create some out of memory errors depending on the php configuration, and also some timeout problem if you call it from an http request. – MatthieuP Jan 6 '11 at 11:49
Possibly - there are a million variables which will affect the efficacy of this solution (as with alot of solutions). If the script does jam, a combination of ignore_user_abort(1); and set_time_limit(0); may resolve it. – Lucanos Jan 6 '11 at 15:07
@Lucanos: why don't wrap this script running with another one written on ruby, that will be called with another one written on python? – zerkms Feb 7 '11 at 0:05
@zerkms: Now you're going to a whole new, Inception-esque layer there... – Lucanos Feb 7 '11 at 4:32
@Lucanos: I jost wondered why you wrapped the shell one-liner with just one additional (pointless) programming language, and not 3. The more - the better. – zerkms Feb 7 '11 at 4:44
show 7 more comments
feedback

Create somewhere a script to make your rolling backups, like this (untested, but should work):

#!/bin/bash

BKPDIR=dailbackup  # You must use absolute path here
DB=finaldb
USERNAME=myusername
PASSWORD=mypassword

BKPFILE=${BKPDIR}/`date +%Y-%m-%d`/final_db_`date +%H`.sql

# Create backup
mysqldump --user=${USERNAME} --password=${PASSWORD} ${DB} | gzip -c > ${BKPFILE}

# Remove older backups (> 7 days),
# unless you want to run out of drive space
find ${BKPDIR} -mtime +7 -print0 | xargs -0 rm -rf

Then setup this script to run as an hourly cronjob:

crontab -e

0 * * * * /absolute-path-to-where-you-saved-the-script
link|improve this answer
feedback
crontab -e

putting this:

the_date='date +%Y%m%d'
the_hour='date +%H'
0 * * * * mysqldump OPTIONS > /dailbackup/`$the_date`/final_db_`$the_hour`.sql

the above cron is allow you to backup database every hour and using the %H as sql file name

link|improve this answer
feedback

Untested one liner:

mysqldump -u*user* -p*password* -P*dbport* -h localhost finaldb > /.../dailbackup/final_db_$(date +%Y-%m-%d_%H_%M).sql

just add it to your cron job or wrap it in a script and you are done

link|improve this answer
You can then pipe that to a tar or zip packager – Aaron W. Dec 12 '10 at 14:53
feedback

Yes ofcourse, you can do it as long as your mysql server is up and listening :). You will need to make a shell or perl script and use edit the crond using the below command (in Fedora):

crontab -e

Components of your cron job is ::

1) Path to your script(executable)

2) Minutes(00-59)

3) Hours (00 - 23)

4) Month (01-12)

5) Day (01-31)

6) Day of the week (00 -06 with 00 as Sunday)

Example :: You wat to run test_pl script every day at 1200

entry in crontab will be ::

00 12 * * * /home/jok/test_pl

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.