美文网首页
Centos7安装PHP7.2

Centos7安装PHP7.2

作者: 敦敦实实 | 来源:发表于2019-03-15 13:41 被阅读0次

    我的博客主页:笔头博客

    建议方法

     # 安装EPEL yum存储库
     yum install epel-release -y
     # 安装Remi存储库
     rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
     # 安装 PHP 7.3 
     yum --enablerepo=remi-php73 install php
     # 安装 PHP 7.2 
     yum --enablerepo=remi-php72 install php
     # 安装 PHP 7.1 
     yum --enablerepo=remi-php71 install php
    

    安装php yum源

    # 方法一:
    rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
    rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
    
    # 方法二:
    yum install epel-release -y
    rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
    

    清理 旧php

    yum -y remove php*
    

    查看可以安装的php版本

    yum list php*
    

    安装php精简拓展

    yum -y install php72w php72w-cli php72w-fpm php72w-common php72w-devel 
    
    # 也可以安装 豪华版拓展
    yum -y install php72w php72w-cli php72w-fpm php72w-common php72w-devel php72w-embedded php72w-gd php72w-mbstring php72w-mysqlnd php72w-opcache php72w-pdo php72w-xml
    

    php-fpm开机自启

    systemctl enable php-fpm
    

    这种安装方法 可能会出现 yum info phpphp -v 两条命令 显示的php版本不同

    相关文章

      网友评论

          本文标题:Centos7安装PHP7.2

          本文链接:https://www.haomeiwen.com/subject/vgmlmqtx.html