• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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