I need to stop a old server running with MySQL 4.1 with lots of database on it (MyISAM and InnoDB), and to migrate to a new one (5.1.63 installed on a fresh Squeeze). It's a shared hosting servers so I have lot's of users and databases (around 2000).
I don't want to migrate all databases at same time but one by one.
What is the best way to do this ?
Should I expect some problems to migrate ?
You should mysqldump each database individually. Also, since the grants tables for MySQL 4.1 do not match the grant tables for MySQL 5.5, you have to dump MySQL Grants in SQL format.
When you execute all the scripts against MySQL 5.5, they will
Give it a Try !!!