Centos7环境下更新PHP7.3到PHP7.4
piaoling 2023-08-01 12:12:26
文章目录
- 安装 EPEL 源
- 安装 Remi 源
- 安装 yum-utils (yum-config-manager)
- 配置源:首先禁用当前的php源并启用需要安装的php7.4的源
- 执行Update更新PHP7.4
- 启动php7.4并设置开机自启动
近日在对个人网站例行维护时,发现WordPress 后台的站点健康提示推荐更新 PHP 7.4。
要在CentOS 7环境下将PHP 7.3更新到PHP 7.4,我们可以按照以下步骤进行操作:
安装 EPEL 源
EPEL (Extra Packages for Enterprise Linux)是基于Fedora的一个项目,为“红帽系”的操作系统提供额外的软件包,适用于RHEL、CentOS和Scientific Linux
yum install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
安装 Remi 源
CentOS下除了EPEL源之外还有REMI的源,REMI源保证了软件的最新但并不一定是稳定的。因此安装了REMI源之后默认是不启用的,只有需要的时候才会开启使用。
yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
安装 yum-utils (yum-config-manager)
yum install yum-utils
配置源:首先禁用当前的php源并启用需要安装的php7.4的源
yum-config-manager --disable 'remi-php*' yum-config-manager --enable remi-php74
执行Update更新PHP7.4
yum update
启动php7.4并设置开机自启动
#重启php-fpm systemctl restart php74-php-fpm #添加自动启动 systemctl enable php74-php-fpm #查看php7.4的安装路径 whereis php
命令总结:
yum install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm yum install yum-utils yum-config-manager --disable 'remi-php*' yum-config-manager --enable remi-php74 yum update service httpd restart
安装zip: yum install php-pecl-zip
参考来源:https://blog.51cto.com/u_16065421/6453074
发表评论(评论将通过邮件发给作者):