• 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

Restore from 7.5 psadump to 8

M

McMac@

Guest
I have a dump file from plesk 7.5 (using pleskdump) that I would like to restore into plesk 8. Any ideas on how I could do this?
 
Check your /var/lib/psa/dumps directory for a specific backup of the psa database.

If you have it, you can unzip it, and do this:

mysql -uadmin -p<whateveryourpassword>

At the mysql prompt:

drop psa;
create database psa;


Then quit out of mysql.

Then do:

mysql -uadmin -p<whateveryourpassword> < psa.dump.file.name

That will restore your 7.5.4 database.
 
Back
Top