怎样通过yum安装指定版本的php

  • 来源:网络
  • 更新日期:2020-08-17

摘要:通过yum安装指定版本的php的方法:首先执行【yum -y install epel-release】命令安装源;然后执行【yum-config-manager --enable remi-php71】命令安装指定版本的php即可。具体

通过yum安装指定版本的php的方法:首先执行【yum -y install epel-release】命令安装源;然后执行【yum-config-manager --enable remi-php71】命令安装指定版本的php即可。

具体方法:

(推荐教程:php图文教程)

1、安装源

安装epel-release:

yum -y install epel-release

添加remi源:

rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm

安装yum-config-manager实用程序:

yum -y install yum-utils

(视频教程推荐教程:php视频教程)

2、安装PHP

安装PHP7.1:

yum-config-manager --enable remi-php71
yum -y install php php-opcache

完成后还需要添加PHP常用扩展:

yum -y install php-mysql php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-soap curl curl-devel
yum -y install php71-php-fpm.x86_64
systemctl restart php71-php-fpm    #启动php
netstat -tunlp|grep 9000     #查看php启动状态