2015-07-02 59 views
25

我試圖在我的Amazon Linux AMI實例上安裝yii2,它需要php-mbstring擴展才能工作。嘗試在ec2上安裝php-mbstring的依賴關係問題

當我試圖運行sudo yum install php-mbstring它返回此錯誤:

Error: php56-common conflicts with 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 

感謝您的時間提前

+0

5.5和5.3? ...和5.6?你能找到匹配版本的軟件包嗎? – ficuscr

+0

在亞馬遜Linux上,5.4版及以後的PHP版本設置爲並排運行。使用替代方法設置活動版本。 – datasage

回答

65

看來你已經安裝了PHP 5.6。
您需要爲該特定版本的php安裝mbstring

運行sudo yum install php56-mbstring

之後,它可能會重新啓動Apache是​​一個好主意(感謝!@hexicle),
使用sudo service httpd restart

+0

其他可能有幫助的命令。 'yum search','yum list installed','man yum'。 – ficuscr

+0

nope,那個應該這樣做:)) –

+4

謝謝我是個笨蛋 –

0

亞馬遜的Linux AMI釋放2017.09

sudo yum install php70-mysqlnd 
sudo service httpd restart