yum 升级php版本
centos默认安装的php都是 5.3的 ,现在需要 5.6以上的版本
手动安装比较麻烦,直接用yum升级了。
一、准备工作
首先检查当前php版本
#php -v
查看安装的php扩展包
#yum installed|grep php
为了避免 冲突,直接删除所有低版本php
#yum remove php*
二、升级yum源
总结网上的升级yum源方法,大体有以下两种方法
1. 安装 epel+website 这两个源
CentOs 7.X
#rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
#rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
安装完成后可以使用yum repolist查看已经安装的源
然后可以
yum install php55w 安装php5.5
或 yum install php54w
或yum install php56w
或yum install php70w……
就可以安装新版本PHP了
2.安装 epel+Remi 这两个源
是包含最新版本
PHP 和 MySQL 包的 Linux 源,由 Remi 提供维护
centos自带的yum就可以安装epel
#yum install epel-release.noarch
安装remi的centos7的源
# rpm -ivh http:
//rpms.famillecollet.com/enterprise/remi-release-7.rpm
这个remi的源安装后还需要修改一下,使其生效
# vi /etc/yum.repos.d/remi-php??
需要使用哪个版本php,就修改哪个版本文件
例如:remi-php70.repo 代表php7.0的源
把红色行的注释去掉,蓝色行0改为1
[remi]
name=Remi's
RPM repository
for
Enterprise
Linux 6 - $basearch
#baseurl=http://rpms.remirepo.net/enterprise/6/remi/$basearch/
mirrorlist=http:
//rpms
.remirepo.net
/enterprise/6/remi/mirror
enabled=1
gpgcheck=1
gpgkey=
file
:
///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
然后就可以安装新版本php了
# yum install php