• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Problem Update MySQL

E

ErnestoW

Guest
Hi, I am trying to update my MySQL in the server I run"yum update" and I get this


--> Processing Dependency: /usr/lib/mysql/libmysqlclient.so.15 for package: sw-e
--> Finished Dependency Resolution
sw-engine-2.0-3.200903131156.centos5.i386 from installed has depsolving problems
--> Missing Dependency: /usr/lib/mysql/libmysqlclient.so.15 is needed by packa
Error: Missing Dependency: /usr/lib/mysql/libmysqlclient.so.15 is needed by pack


here is my output of installed packages:

[root@rootsvr ]# rpm -qa | grep mysql
perl-DBD-mysql-4.012-1.el5.rf
mysql-server-5.0.45-7.el5
mysql-5.0.45-7.el5
php-mysql-5.1.6-23.2.el5_3
 
Hello,

You can try to download and install the MySQL package manually. First you can remove mysql package with the following command:

rpm -e --nodeps --justdb mysql-5.0.45-7.el5

And then install the updated package.

You can find more information on rpm command options in the following article:

http://linux.die.net/man/8/rpm
 
What version of mysql are you attempting to upgrade to? If you are going to 5.1, you'll need to add in a -compat library with the mysql 5.0 client libraries.
 
Back
Top