Answer the question
In order to leave comments, you need to log in
How to organize a MySQL database move?
There is a 700GB MySQL database, everything is in 1 file - ibdata1
The current server is limited in terms of disk space, the database is slowly filling up, it becomes relevant to transfer the database to a new server with more disk storage, and also make sure that the tables in the database are separate files.
How to do it right? With minimal downtime.
Thanks in advance!
Answer the question
In order to leave comments, you need to log in
You can very quickly transfer the database with all the data Disable
writing
Transferring data
mysqldump -uroot DB |
mysql --host= host.com -uroot -ppass -C
DB
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question