Hi guys, I'm trying to find the best practice approach to backup and
restore a mysql database in a remote server. Currently I'm using `sudo
mysqldump -u root -p dbname > dbname.dump` using a script that is sent
to the server, then doing an `scp` of t...