Centos 6.x/7.x yum安裝php5.6.X(最新版)

鑑於Centos 默認yum源的php版本過低了,手動編譯安裝又有點一些麻煩,那麼如何採用Yum安裝的方案安裝最新版呢。那麼,今天咱們就來學習下如何用yum安裝php最新版。

1.檢查當前安裝的PHP包php

yum list installed | grep php  

若是有安裝的PHP包,先刪除他們mysql

yum remove php.x86_64 php-cli.x86_64 php-common.x86_64 php-gd.x86_64 php-ldap.x86_64 php-mbstring.x86_64 php-mcrypt.x86_64 php-mysql.x86_64 php-pdo.x86_64  

配置yum源

追加CentOS 6.5的epel及remi源。linux

# rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm

# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

如下是CentOS 7.0的源。web

# yum install epel-release

# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

使用yum list命令查看可安裝的包(Packege)。redis

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

安裝PHP5.6.x

yum源配置好了,下一步就安裝PHP5.6。sql

# yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof php-gd php-redis

安裝PHP-fpm

yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm 

在這裏安裝的版本是PHP5.6.13。緩存

從PHP5.5開始PHP代碼緩存從APC變成了Zend OPcache了。php-fpm

其餘源:學習

 

2.Centos 5.X
  rpm -Uvh http://mirror.webtatic.com/yum/el5/latest.rpm
  CentOs 6.x
  rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm
  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

若是想刪除上面安裝的包,從新安裝
rpm -qa | grep webstatic
rpm -e  上面搜索到的包便可spa

3.運行yum install

yum install php55w.x86_64 php55w-cli.x86_64 php55w-common.x86_64 php55w-gd.x86_64 php55w-ldap.x86_64 php55w-mbstring.x86_64 php55w-mcrypt.x86_64 php55w-mysql.x86_64 php55w-pdo.x86_64

yum install php56w.x86_64 php56w-cli.x86_64 php56w-common.x86_64 php56w-gd.x86_64 php56w-ldap.x86_64 php56w-mbstring.x86_64 php56w-mcrypt.x86_64 php56w-mysql.x86_64 php56w-pdo.x86_64

注:若是想升級到5.6把上面的55w換成56w就能夠了。
4.安裝PHP FPM

yum install php55w-fpm 注:若是想升級到5.6把上面的55w換成56w就能夠了。
相關文章
相關標籤/搜索