Download Your Free eBooks NOW - 10 Free Linux eBooks for Administrators | 4 Free Shell Scripting eBooks
Transferring or Migrating a MySQL/MariaDB database between servers usually takes only few easy steps, but data transfer can take some time depending on the volume of data you would like to transfer.
In this article, you will learn how to transfer or migrate all your MySQL/MariaDB databases from old Linux server to a new server, import it successfully and confirm that the data is there.
Important Notes
- Make sure to have the same version of MySQL installed on both server with same distribution.
- Make sure to have enough free space on both server to hold the database dump file and the imported database.
- Don’t ever consider moving the
data
directory of database to another server. Never mess with internal structure of the database, if you do, you will face problems in future.
Export a MySQL Databases to Dump File
First start by login into your old server and stop the mysql/mariadb service using the systemctl command as shown.
Then dump all your MySQL databases to a single file using the mysqldump command.
Once the dump is completed, you are ready to transfer the databases.
If you want to dump a single database, you can use:
Transfer MySQL Databases Dump File to New Server
Now use scp command to transfer your databases dump file to the new server under home directory as shown.
Once you connect, the database will be transferred to the new server.
Import MySQL Databases Dump File to New Server
Once the MySQL dump file has been traferred to the new server, you can use the following command to import all your databases into MySQL.
Once the import is completed, you can verify the databases on both servers using the following command on the mysql shell.
Transfer MySQL Databases and Users to New Server
If you want to move all your MySQL databases, users, permissions and data structure old server to new, you can use rsync command to copy the all the content from the mysql/mariadb data directory to new server as shown.
Once the transfer completes, you can set the ownership of the mysql/mariadb data directory to user and group mysql, then do a directory listing to check that all files have been transferred.
That’s all! In this article, you learned how to easily migrate all MySQL/MariaDB databases from one server to another. How do you find this method compared to other methods? We would like to hear from you via the comment form below to reach us.