centos7重新安裝php7.2的方法:1、透過「yum -y remove php*」清理舊php;2、查看可以安裝的php版本;3、安裝php精簡拓展;4、設定php -fpm開機自啟動即可。
本文操作環境:centos7系統、PHP7.2版、DELL G3電腦
centos7怎麼重新安裝php7.2?
Centos7安裝PHP7.2
# 安装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
# 方法一: 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
yum -y remove php*
yum list 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
systemctl enable php-fpm
這種安裝方法可能會出現 yum info php與php -v 兩個指令顯示的php版本不同
推薦學習:《PHP影片教學》
以上是centos7怎麼重新安裝php7.2的詳細內容。更多資訊請關注PHP中文網其他相關文章!