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.
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.