歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux綜合 >> 學習Linux >> CentOS 通過yum來升級php到php5.6,yum upgrade php 沒有更新包怎麼辦?,centosphp5.6

CentOS 通過yum來升級php到php5.6,yum upgrade php 沒有更新包怎麼辦?,centosphp5.6

日期:2017/3/6 9:40:03   编辑:學習Linux

CentOS 通過yum來升級php到php5.6,yum upgrade php 沒有更新包怎麼辦?,centosphp5.6


CentOS 通過yum來升級php到php5.6,yum upgrade php 沒有更新包怎麼辦?,centosphp5.6


在文章中,我們將展示在centOS系統下如何將php升級到5.6,之前通過yum來安裝lamp環境,直接升級的話,提示沒有更新包,也就是說默認情況下php5.3.3是最新

1.查看已經安裝的php版本號

鍵入下面代碼:

php -v

出現下面代碼:

PHP 5.3.3 (cli) (built: Jul 9 2015 17:39:00) 
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies

好,我們繼續。

2.安裝Remi跟EPEL RPM源

如果你還沒安裝,則輸入以下代碼:

wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm && rpm -Uvh epel-release-latest-6.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm && rpm -Uvh remi-release-6*.rpm

下載之後:

nano /etc/yum.repos.d/remi.repo

然後對裡面內容進行以下修改:

[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

還有以下:

[remi-php56]
name=Remi's PHP 5.6 RPM repository for Enterprise Linux 6 - $basearch
#baseurl=http://rpms.remirepo.net/enterprise/6/php56/$basearch/
mirrorlist=http://rpms.remirepo.net/enterprise/6/php56/mirror
# WARNING: If you enable this repository, you must also enable "remi"
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi

按CTRL+O保存,CTRL+X關閉編輯器  

3.現在可以yum命令直接升級了

輸入以下代碼

yum -y upgrade php*

一旦更新完畢,再次查看php版本號

php -v

出現以下信息

PHP 5.6.14 (cli) (built: Sep 30 2015 14:07:43) 
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies

  

到此,php升級完畢

http://xxxxxx/Linuxjc/1134424.html TechArticle

Copyright © Linux教程網 All Rights Reserved