Jump to content

Automated Database Backups


ACBobby

Recommended Posts

I'm sure there's a way to do this and I'm just out of it tonight.

Basically, I'm using MySQL Administrator (the now EOL version) to fulfill automatic full backups of my database. I gave Workbench a try, but sadly to say, I messed that up really quick when I deleted most of the tables in my database.

Essentially, I have backups scheduled to be automatically created every Friday at midnight. My question is: Is there a way to automatically have every new update FTP'd to a remote location so that I may have the backup in another location away from my home hard drive? I'd rather not have to actually manually interfere after every update to ensure that the correct file gets uploaded next time.

Thanks,

Bobby

Link to comment
Share on other sites

Link to comment
Share on other sites

this is what we use on our mysql server...(started using it AFTER we had to pay 5g to recover all the data)

($Second, $Minute, $Hour, $Day, $Month, $Year, $WeekDay, $DayOfYear, $IsDST) = localtime(time); 

$Year += 1900; $Month += 1;

$dt = sprintf("%04d%02d%02d", $Year, $Month, $Day, );

exec "/usr/local/bin/mysqldump --user=root --password=hak5 -A -f |gzip > /backup/$dt.gz";

note..

the backup mount (/backup) is a mounted NFS over the network to our freeNAS box. Hope that helps.

Edited by 3TeK
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...