web-dev-qa-db-ja.com

ec2にphp-mbstringをインストールしようとする依存関係の問題

Amazon Linux AMIインスタンスにyii2をインストールしようとしていますが、機能するにはphp-mbstring拡張が必要です。

Sudo yum install php-mbstringを実行しようとすると、次のエラーが返されました。

エラー:php56-commonはphp-common-5.3.29-1.8.amzn1.x86_64と競合します

Loaded plugins: priorities, update-motd, upgrade-helper
amzn-main/latest                                         | 2.1 kB     00:00
amzn-updates/latest                                      | 2.3 kB     00:00
2494 packages excluded due to repository priority protections
Resolving Dependencies
--> Running transaction check
---> Package php-mbstring.x86_64 0:5.3.29-1.8.amzn1 will be installed
--> Processing Dependency: php-common(x86-64) = 5.3.29-1.8.amzn1 for package: php-mbstring-5.3.29-1.8.amzn1.x86_64
--> Running transaction check
---> Package php-common.x86_64 0:5.3.29-1.8.amzn1 will be installed
--> Processing Conflict: php56-common-5.6.9-1.112.amzn1.x86_64 conflicts php-common < 5.5.22-1.98
--> Finished Dependency Resolution
Error: php56-common conflicts with php-common-5.3.29-1.8.amzn1.x86_64
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest

事前にお問い合わせいただきありがとうございます

33
Bob Lin

Php 5.6がインストールされているようです。
特定のバージョンのmbstringphpをインストールする必要があります。

実行Sudo yum install php56-mbstring

その後、Apacheを再起動することをお勧めします(ありがとう! @ hexicle )、
使用Sudo service httpd restart

79
Alex Andrei

Amazon Linux AMIリリース2017.09

Sudo yum install php70-mysqlnd
Sudo service httpd restart
2
Victorio Berra