mysql backup

cmasters

Registered
Just wondering if anyone has a good way to do this...I need a program, or at least a way to get my MySQL databases to back up daily and am wondering what the best way is to go about this. Comments? Suggestions?
 
mysqldump -u root -h localhost -p[password] DB_name > backup/mysql/DB.sql

This works for me anyway.

You can make a .login file where you put that in, and it'll get executed whenever you log in.

NuCleuZ
 
Back
Top