I have My SQL running on my remote webserver.
What is the best way to back this up every night to my windows home server?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Create a mysql SQL script with the backup process most likely having
mysqldumpor SELECT .. INTO OUTIFLE commands.Create a .bat file to run the mysql script in step1 with command line.
mysql -uuser -ppassword -host remoteserver.com database < script.sqlSet up Windows jobs to execute the bat file daily.