Linux安装PHP扩展包冲突

文章目录

扩展包冲突

yum安装PHP-FPM扩展时报错

执行

# yum install PHP-fpm

报错信息:

Error: PHP70w-common conflicts with PHP-common-5.4.16-43.el7_4.1.x86_64

自己PHP的版本是7.0,网上查到linux系统的PHP版本是5.4,如果手动安装扩展,需要指定PHP的版本号

# yum install PHP70w-fpm    

控制台输出:

[root@iZbp109iqt20o2h63tpcuvZ dev]# yum install PHP70w-fpm
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* webtatic: uk.repo.webtatic.com
Resolving Dependencies
--> Running transaction check
---> Package PHP70w-fpm.x86_64 0:7.0.27-1.w7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

========================================================================================================================================================
Package                              Arch                            Version                                Repository                          Size
========================================================================================================================================================
Installing:
PHP70w-fpm                          x86_64                          7.0.27-1.w7                            webtatic                          1.5 M

Transaction Summary
========================================================================================================================================================
Install  1 Package

Total download size: 1.5 M
Installed size: 4.5 M
Is this ok [y/d/N]: y
Downloading packages:
PHP70w-fpm-7.0.27-1.w7.x86_64.rpm                                                                                                | 1.5 MB  00:00:03    
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : PHP70w-fpm-7.0.27-1.w7.x86_64                                                                                                        1/1 
  Verifying  : PHP70w-fpm-7.0.27-1.w7.x86_64                                                                                                        1/1 

Installed:
  PHP70w-fpm.x86_64 0:7.0.27-1.w7                                                                                                                      

Complete!
[root@iZbp109iqt20o2h63tpcuvZ dev]# 

感谢:

https://stackoverflow.com/questions/23919341/error-PHP55w-common-conflicts-with-PHP-common-on-centos-6-5

http://www.mamicode.com/info-detail-2129072.html

FPM操作命令

FPM相关进程查看和操作

ps axo pid,%cpu,%mem,comm |grep PHP-fpm

ps aux | grep PHP-fpm

pkill -9 PHP-fpm

/etc/init.d/PHP-fpm start

来源

http://blog.csdn.net/boolbo/article/details/51354528

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...