I'm running MySQL 5.0 in production on CentOS. How do I migrate to Percona Server 5.1 safely?

The documentation of Percona Server doesn't include any information on migrating. Any help is greatly appreciated.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

At a guess I'd say mysqldump your database from MySQL and reimport it into the Percona server.

I don't know if you can just fire up Percona server pointed to the same datadir as MySQL. Might be worth investigating.

link|improve this answer
You can just install Percona Server over MySQL. It is binary compatible. – Aaron Brown Jan 29 at 22:17
feedback

The data files are compatible with percona server. You just need to start percona server mysqld and everything will work.

Only when you enable some features (like extra rollback segments) on percona server, you might not be able to go back to mysql. but you rarely need to change this parameter.

link|improve this answer
feedback

It's pretty much the same upgrade path from 5.0 to 5.1, of course to make better use of Percona enhancements you should consult the wiki.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.