• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

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