Answer the question
In order to leave comments, you need to log in
Transferring the database via mysqldump does not help, why?
Hello. Tried to drag MYSQL 5.6 to 5.6 on another server
mysqldump -u user -p jira > jira.sql
перенести jira.sql на другую машину
mysql -u user -p jira < jira.sql
Answer the question
In order to leave comments, you need to log in
Generally. I had to increase the performance of the machine. Because the error could not be resolved. And deploy using xml backup
If something "breaks" in you, errors would be visible during the dump / restore.
In general, everything is correct.
You can add "--routines --triggers". And it is worth adding the name of the database for the dump.
And why are you sure that the original database is larger?
You can compare the size on the old and new machines
SELECT table_schema "DB Name",
ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB"
FROM information_schema.tables
GROUP BY table_schema;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question