• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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