• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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