How to backup MySQL on Linux

How to backup MySQL on Linux Connect to your Linux server via SSH Use the mysqldump utility to create your database backup. The command is run in the format “mysqldump –host server_name –user username –password db_name > backup_file_name.mysql” Host: the hostname or IP Address of the MySQL server that hosts your database User: your MySQL … Read more