• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Beware PMM MySQL auto_increment Attributes Lost!

eugenevdm

Regular Pleskian
Beware if you're using Plesk Migration Manager to move sites from FC4 64-bit to FC6 64-bit.

YOU WILL LOOSE ALL YOUR auto_increment attributes and you will have to manually back up and restore each database.

I don't know what kind of backup it performs but for all intensive purposes it's useless.

Rather do this:
mysqldump -a -u admin -p DATABASE > FILENAME.mysql
mysqladmin -u admin -p create DATABASE
mysql -u admin -p DATABASE < FILENAME.mysql

This problem might also occur if you're using other distributions but I can't vouch for this.
 
Back
Top