依赖项失败:libmysqlclient.so.15 作为 Sphinx 安装的一部分

依赖项失败:libmysqlclient.so.15 作为 Sphinx 安装的一部分

我正在运行 CentOS 5.7 并尝试安装 Sphinx Search,但不断收到缺少依赖项错误。

$ yum install sphinx
...
Error: Missing Dependency: libmysqlclient.so.15 is needed by package sphinx-0.9.8.1-3.el5.i386 (epel)
Error: Missing Dependency: libmysqlclient.so.15(libmysqlclient_15) is needed by package sphinx-0.9.8.1-3.el5.i386 (epel)
....

我有 libmysqlclient.so.16 作为 MySQL / MySQL-devel 的一部分。

我的问题:有没有办法在同一个系统上安装 libmysqlclient.so v15 和 v16,如果可以,我该怎么做?

我搜索了好多地方,但似乎找不到答案;希望这里有人可以提供帮助。

谢谢你!

答案1

安装 shared-compat 包,并尝试重新安装依赖项。

答案2

安装 remi 存储库:

http://blog.famillecollet.com/pages/Config-en

Enterprise Linux 6(带 EPEL)i386 或 x86_64

wget http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm

然后安装 compat-mysql51

yum --enablerepo=remi install compat-mysql51

现在从 rpm 安装 sphinx

相关内容