Cent OS 安装 PHP

本文最后更新于:2021年11月18日 晚上

正文

本文以安装 PHP 7.3 为例

安装源

1. 安装 EPEL 源

1
yum install epel-release

2. 安装 Remi 源

1
yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm

3. 安装 yum 源管理工具

1
yum install yum-utils

安装 PHP

1. 使用 yum 源管理工具启用 Remi 中 PHP 7.3 的源

1
yum-config-manager --enable remi-php73

2. 通过 yum 安装 PHP 7.3 以及必要组件

1
yum install -y php php-fpm php-mysql php-pecl-zip

3. 启动 php-fpm 服务

1
systemctl start php-fpm.service 或者 service php-fpm start

4. 设置 php-fpm 服务开机自启

1
systemctl enable php-fpm.service

扩展阅读

Remi 常用命令

搜索 Remi 源中的包

1
yum --enablerepo=remi search 关键字

安装 Remi 源中的包

1
yum --enablerepo=remi install 包名

Cent OS 安装 PHP
https://chenpipi.cn/post/centos-install-php/
作者
陈皮皮
发布于
2019年2月9日
更新于
2021年11月18日
许可协议