• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.

Plesk 12.0.18 Update #33 How Can I Upgrade Mysql 5.5 version

Berkay

New Pleskian
Hello I'm using Centos with plesk.

I update my plesk 12.0.18 Update 33 but I'm using still 5.1.

How can I upgrade my mysql ?

(#12.0.18 Update 33 : (On Centos/RHel 5) MySQL 5.5 was updated to the latest version 5.5.41.)

Thanks
 
It is available only on CentOS5 and RHEL5.
If you have these OSes you can change MySQL version in autoinstaller.
 
The following updates PHP to 5.4 as well, so make sure you want that before upgrading.
The following has been tested on a CentOS 6.6 server with Plesk 12. I see you are running CentOS 5, run these commands at your own discretion. I haven't tried this process on a CentOS 5 box.

Install the atomic repo
Code:
wget -q -O - http://www.atomicorp.com/installers/atomic |sh

Backup all your current databases:
Code:
mysqldump -uadmin -p`< /etc/psa/.psa.shadow ` --all-databases | gzip > /root/mysql.all.dump.sql.gz

Issue an upgrade. Make sure you go through the services being upgrade before pressing y
Code:
yum upgrade mysql

You'll now need to upgrade your databases to 5.5's standards
Code:
mysql_upgrade -uadmin -p`< /etc/psa/.psa.shadow `


All commands above are to be entered at shell via root.
 
Thank you very much I'm using Centos 6.6 but I don't want to use ssh shell so I want to change with autoinstaller.
Can Plesk support Centos 6.6 with autoinstaller? Meanwhile changelos says (On Centos/RHel 5) you can chance log to (On Centos 5 and RHel 5)
Thanks again.
 
You can do it with help of autoinstaller UI only for CentOS5 version. On your CentOS6 version you can upgrade MySQL only in command line interface.
 
Back
Top