Centos7 把php5.4升級到php5.6

使用Remi源能夠方便對php進行升級(x64版本)php

  • Step1: 添加EPEL和Remi源
wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
 
rpm -Uvh remi-release-7*.rpm epel-release-7*.rpm
  • Step2: 使用Remi repo
vim /etc/yum.repos.d/remi.repo
[remi]
name=Les RPM de remi pour Enterprise Linux 6 - $basearch
#baseurl=http://rpms.famillecollet.com/enterprise/6/remi/$basearch/
mirrorlist=http://rpms.famillecollet.com/enterprise/6/remi/mirror
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
 
[remi-php56]
name=Les RPM de remi de PHP 5.5 pour Enterprise Linux 6 - $basearch
#baseurl=http://rpms.famillecollet.com/enterprise/6/php55/$basearch/
mirrorlist=http://rpms.famillecollet.com/enterprise/6/php55/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

把enabled設爲1.使之起做用。 注意:若是想吧PHP5.4升級爲PHP5.5,則把[remi-php55]的enabled設置爲1mysql

  • Step3: 中止相關服務
service httpd stop
service mysqld stop
  • Step4: 更新
yum update -y
yum update php

這個時候會提醒更新php到5.6 經過如下命令查看是否完成升級sql

php -v

而後啓動服務apache

service httpd start
service mysqld start

這個時候能夠用了。我這邊測試apache2和mariadb能正常使用。 注意,存在新的php.conf文件:php.conf.rpmnew。若是須要新文件替代,須要檢查好設置內容,避免覆蓋。vim

相關文章
相關標籤/搜索