• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

How do I rollback/downgrade from 8.3 to 8.2.1?

M

Monarch1

Guest
Is there a procedure to downgrade from version 8.3 back to version 8.2.1?
 
there are no such procedure and manual downgrade is not easy.. if you have full plesk backup, it is better to install fresh 8.2.1 and restore the backup
 
Oh well, I'm doomed. Thanks anyway.

Can you tell me how to "completely" uninstall 8.3 and do a fresh install of 8.2.1?
 
Assuming you have RHEL4 (you should change distro and arch to your own needs)

Code:
yum remove psa

nano -w /etc/yum.conf

[code]
#replace any 8.3 entries with 8.2.1
[PSA-product-distr-rpms]
name=Plesk Product Distribution RPMS
gpgcheck = 0
baseurl=https://autoinstall.plesk.com/PSA_8.2.1/dist-rpm-RedHat-el4-i386

[PSA-thirdparty-rpms]
name=Plesk Third Party RPMs
gpgcheck = 0
baseurl=https://autoinstall.plesk.com/PSA_8.2.1/thirdparty-rpm-RedHat-el4-i386

[PSA-product-updates-rpms]
name=Plesk Product Updates
gpgcheck = 0
baseurl=https://autoinstall.plesk.com/PSA_8.2.1/update-rpm-RedHat-el4-i386

yum clean all
yum install psa

[/code]

That should do it
 
Back
Top