php-mbstring 安装-版本冲突(Cent OS)

php-mbstring 安装-版本冲突(Cent OS)

我正在运行 CentOS 6.3,我需要为 PHP 安装 mb-string。当我尝试执行此操作时,我得到以下信息:

[root@pixelark popups]# yum install php-mbstring
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * Webmin: download.webmin.com
 * base: centos.mirrors.hoobly.com
 * epel: epel.mirror.freedomvoice.com
 * extras: mirrors.versaweb.com
 * updates: mirrors.usc.edu
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package php-mbstring.x86_64 0:5.3.3-23.el6_4 will be installed
--> Processing Dependency: php-common(x86-64) = 5.3.3-23.el6_4 for package: php-mbstring-5.3.3-23.el6_4.x86_64
--> Finished Dependency Resolution
Error: Package: php-mbstring-5.3.3-23.el6_4.x86_64 (updates)
       Requires: php-common(x86-64) = 5.3.3-23.el6_4
       Installed: php-common-5.3.15-1.el6.remi.x86_64 (@remi)
           php-common(x86-64) = 5.3.15-1.el6.remi
       Available: php-common-5.3.3-22.el6.x86_64 (base)
           php-common(x86-64) = 5.3.3-22.el6
       Available: php-common-5.3.3-23.el6_4.x86_64 (updates)
           php-common(x86-64) = 5.3.3-23.el6_4
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

我已经做了

yum update

并且仍然显示。我尝试以类似的方式更新 php,但它说没有更新。我不知道我应该朝哪个方向走。我应该尝试底部的两个建议吗

 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

我不想破坏任何东西。

答案1

您正在使用来自 Remi Collet 存储库的 RPM。

请执行以下操作之一:

  1. 卸载 remi 的 rpm(可以用 列出rpm -qa|grep remi)并安装同名的软件包(我推荐这个,因为这

  2. 从 remi 的 repo 安装 php-mbstring(yum install php-mbstring --enablerepo=remi默认情况下应该可以工作)

答案2

您从 remi 存储库安装了 PHP,但您禁用了该存储库。因此 yum 无法从中安装其他软件包。

要解决该问题,请重新启用 remi 存储库。

yum-config-manager --enable remi

相关内容