Migrating MySQL to a new server
When you need to migrate a MySQL server instance to a new server for any reason, eg upgrade of hardware, distri upgrade,… you can easily do the following: Migrating the databases On the “old” mysql server, you need to export all databases by: mysqldump -uroot -p –all-databases > /tmp/dumpofalldb.sql Copy your sql dump file with […]
Migrating MySQL to a new server Read More »