Admin-Ahead Community

Linux => General Linux => Topic started by: sajugovind on August 02, 2014, 08:10:02 pm

Title: Missing Dependency: libmysqlclient.so.15
Post by: sajugovind on August 02, 2014, 08:10:02 pm
You may get the following error when installing some packages, eg, Postfix.

Code: [Select]
yum install postfix
Excluding Packages in global exclude list
Finished
Setting up Install Process
Resolving Dependencies
–> Running transaction check
—> Package postfix.i386 2:2.10.0-1.el5 set to be updated
–> Processing Dependency: libmysqlclient.so.15 for package: postfix
–> Processing Dependency: libmysqlclient.so.15(libmysqlclient_15) for package: postfix
–> Finished Dependency Resolution
2:postfix-2.10.0-1.el5.i386 from CentALT has depsolving problems
–>[b] Missing Dependency: libmysqlclient.so.15 is needed by package 2:postfix-2.10.0-1.el5.i386 (CentALT)
2:postfix-2.10.0-1.el5.i386 from CentALT has depsolving problems
–> Missing Dependency: libmysqlclient.so.15(libmysqlclient_15) is needed by package 2:postfix-2.10.0-1.el5.i386 (CentALT)
Error: Missing Dependency: libmysqlclient.so.15 is needed by package 2:postfix-2.10.0-1.el5.i386 (CentALT)
Error: Missing Dependency: libmysqlclient.so.15(libmysqlclient_15) is needed by package 2:postfix-2.10.0-1.el5.i386 (CentALT)[/b]
You could try using –skip-broken to work around the problem
You could try running: package-cleanup –problems
package-cleanup –dupes
rpm -Va –nofiles –nodigest
The program package-cleanup is found in the yum-utils package.

You have to install mysql-libs and that will solve the dependency issues.

Please follow the below steps.

Code: [Select]
wget -q -O - atomicorp.com/installers/atomic | sh

yum install mysql-libs

yum install postfix

Thank you,