I start the instalation, now i receive a error for file dependencies
see:
root@ca [~/sitebuilder]# rpm -Uhv updates/*.rpm
error: Failed dependencies:
libmysqlclient.so.15()(64bit) is needed by php5sb-5.2.1-10swsoft.x86_64
libmysqlclient.so.15(libmysqlclient_15)(64bit) is needed by php5sb-5.2.1-10swsoft.x86_64
How to install a libmysqlclient.so.15 dependence on centos?
Thanks.
You can try to find the right package by the following command:
then:
You may double check the package name by doing
yum search package_name
.If not found, you may try to fix your yum repositories e.g. by configuring Webtatic Yum Repository.
To set up the repository, install the webtatic-release RPM:
Webtatic EL6 for CentOS/RHEL 6:
Webtatic EL5.1 for CentOS/RHEL 5:
Webtatic 5 for CentOS/RHEL 5:
and repeat the search/reinstall process again.
If you're running cPanel, you may try to run the following script:
If won't help, remove the broken package e.g.
rpm -e cpanel-mysql-5.0.96-1.cp1136
and run the check command again.If still doesn't work, another thing could be to recompile your Apache (only if your LAMP is broken) by:
Related
CentOS
Ubuntu
The missing package was Mysql-Shared-compat. found it here http://mirrors.dedipower.com/www.mysql.com/Downloads/MySQL-5.5/MySQL-shared-compat-5.5.23-1.sles11.x86_64.rpm
I have encountered this problem before.
I checked libmysqlclient.so version, it's libmysqlclient.so.16 but not libmysqlclient.so.15.
so I used MySQL-shared-compat rpm package to solve this.
run:
Like the answer of @lai
I install the MySQL-shared-compat-5.1.47-1.rhel5.x86_64.rpm. But it didn't work.
And then I install the MySQL-shared-5.1.47-1.rhel5.x86_64.rpm. It worked!
I hope this can help you. Good luck :)