CentOS7.5 使用 yum 安装PHP、NGINX环境

一、安装源
# 安装 EPEL 软件包:
yum install epel-release

# 安装 remi 源:
yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm

# 安装 yum 扩展包:
yum install yum-utils

# 启用 remi 仓库:
yum-config-manager --enable remi-php73 $ sudo yum update

二、安装 PHP 服务
# 安装 PHP7.3
$ sudo yum install php73
输入 php73 -v 查看安装结果

# 安装 php-fpm 和一些其他模块:
$ sudo yum install php73-php-fpm php73-php-gd php73-php-json php73-php-mbstring php73-php-mysqlnd php73-php-xml php73-php-xmlrpc php73-php-opcache

三、php-fpm 服务
# 设置开机自启
$ sudo systemctl enable php73-php-fpm.service

常用 php-fpm 命令
# 开启服务:
systemctl start php73-php-fpm.service 

# 停止服务:
systemctl stop php73-php-fpm.service

# 查看状态:
systemctl status php73-php-fpm.service

四、安装 NGINX 服务
yum -y install nginx

常用 nginx 命令
# 开启服务:
systemctl start nginx.service 

# 停止服务:
systemctl stop nginx.service

# 查看状态:
systemctl status nginx.service

# 设置开机自启
systemctl enable nginx.service

 

你可能感兴趣的:(CentOS7.5 使用 yum 安装PHP、NGINX环境)