web-dev-qa-db-ja.com

Yum:php55w-commonはphp-common-5.4と競合します

コマンドラインで_yum install php-mysqlnd.x86_64_を使用してmysqliをCentOSマシンにインストールしようとしていますが、次のメッセージが表示されます。

_Error: php55w-common conflicts with php-common-5.4.16-36.el7_1.x86_64
  You could try using --skip-broken to work around the problem
  You could try running: rpm -Va --nofiles --nodigest
_

提案された回避策はどちらも、問題を解決するために何もしません。

インストールしようとしたときに表示される全文は次のとおりです。

Sudo yum install php-mysqlnd.x86_64 Loaded plugins: fastestmirror, replace Loading mirror speeds from cached hostfile * base: mirror.acsnet.com * extras: mirrors.chkhosting.com * rpmforge: mirror.webnx.com * updates: mirror.netdepot.com Resolving Dependencies --> Running transaction check ---> Package php-mysqlnd.x86_64 0:5.4.16-36.el7_1 will be installed --> Processing Dependency: php-pdo(x86-64) = 5.4.16-36.el7_1 for package: php-mysqlnd-5.4.16-36.el7_1.x86_64 --> Running transaction check ---> Package php-pdo.x86_64 0:5.4.16-36.el7_1 will be installed --> Processing Dependency: php-common(x86-64) = 5.4.16-36.el7_1 for package: php-pdo-5.4.16-36.el7_1.x86_64 --> Running transaction check ---> Package php-common.x86_64 0:5.4.16-36.el7_1 will be installed --> Processing Conflict: php55w-common-5.5.26-1.w7.x86_64 conflicts php-common < 5.5.0 --> Finished Dependency Resolution Error: php55w-common conflicts with php-common-5.4.16-36.el7_1.x86_64 You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest

それは私がインストールする必要があるバージョンである5.5ではなくphp 5.4にインストールしようとしているようです...

Mysqliをインストールして、CentOs 7でphp 5.5を使用する方法についてのアイデアはありますか?いくつかのガイドに従ってみましたが、依存関係の問題によりインストール手順を完了できません。

4
Duck Puncher

PHP 5.5のRPMをインストールする必要がありました。

rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

次に実行します:

Sudo yum install php55w-mysqlnd.x86_64

php.iniファイルを再確認してmysqliが有効になっていることを確認し、Sudo systemctl restart httpd.serviceを使用してhttpdサービスを再起動します。

それでうまくいくはずです!

1
Duck Puncher