CentOS yum如何安裝php7.4

2020-07-16 10:06:12
centos系統下使用yum安裝php7.4正式版,當前基於WLNMP提供的一鍵安裝包來安裝

1、新增epel源

yum install epel-release

2、新增WLNMP一鍵安裝包源

rpm -ivh http://mirrors.wlnmp.com/centos/wlnmp-release-centos.noarch.rpm

3、安裝php7.4

yum clean all
yum install wphp74

啟動方式

/etc/init.d/php-fpm74 restart

4、設定nginx

(1)如果使用WLNMP提供的nginx,只需要在nginx安裝後取消include enable-php71.conf;取消註釋即可

WLNMP安裝nginx方法

yum install wnginx

(2)如果當前使用的是非WLNMP提供的nginx,只需要在nginx中設定以下內容即可

        location ~ [^/].php(/|$)
        {
            try_files $uri =404;
            fastcgi_pass  unix:/tmp/php-fpm74.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
        }

更多相關內容可參考:《PHP7》教學

以上就是CentOS yum如何安裝php7.4的詳細內容,更多請關注TW511.COM其它相關文章!