1. 程式人生 > >Centos7新增epel源並升級php

Centos7新增epel源並升級php

最近在阿里雲上入手了一臺centos7的伺服器,在搭建環境過程中發現php的版本是5.4,且是最新的。可現在php都已經到7了,經查詢發現centos為保持穩定性並沒用太多的更新源,使得一些軟體都過於老。因此為了使用到最新的php版本,我們得在centos中新增一些較新的源。目前在centos系統中較流行的源有epel和remi。接下來我們會新增這兩種源來升級php版本。

一、安裝源

rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/7/x86_64/e/epel-release-7-5.noarch.rpm 
rpm -Uvh http://rpms.famillecollet
.com/enterprise/remi-release-7.rpm

二、確認需要安裝的php版本

yum list --enablerepo=remi --enablerepo=remi-php56 | grep php

三、解除安裝已經安裝的php版本

如果系統中已經安裝了較低的php版本,請先解除安裝掉

yun remove php*

四、安裝較新的php版本

yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-pecl-apcu php-devel php-mbstring
php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof php-pdo php-pear php-fpm php-cli php-xml php-bcmath php-process php-gd php-common

檢視php版本

php -v