• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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