This topic is locked

Back Up

9/19/2009 6:05:29 PM
PHPRunner General questions
H
horsey_kim author

I am wondering is anyone using some kind of desktop software to back up their mysql databases? I am trying to find something for windows xp and vista that I can install and will automatically do a back up of my tables and data. I have several websites that I have build using the phprunner and as this grows I am getting some sensitive websites that if there is a problem, back ups are going to be very necessary. Since we have our company systems up most of the time, I was looking for something that could run automatically at night, so being able to tell it when to run would be great.
Anyone else doing this? What do you recommend. Thanks for any advice.

D
danaci 9/20/2009

If your operating system on linux derivative is a crontab script, you can write.

  • / 5 root yourscript.sh
    yourscript content

    mysqldump-u root yourdb > / path / file.sql
    If your operating system manual or a scheduled task in windows can do as above.