• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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