centos yum安裝php7的方法詳解

2020-07-16 10:06:15

centos yum安裝php7的方法:首先將yum倉庫包升級更換成PHP7的rpm包;然後使用yum命令安裝基本PHP元件;接著安裝「PHP-fpm」並啟動「php-fpm」;最後檢視版本以檢測是否安裝成功。

一、安裝準備

使用以下命令將yum倉庫包升級更換成PHP7的rpm包

rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpmrpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

二、開始安裝

1.先使用yum命令安裝基本PHP元件,以後要用到啥再安裝啥

yum -y install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64

2.再安裝PHP-fpm(進程管理器,提供PHP進程管理方式,可以有效控制記憶體和進程、平滑過載PHP設定)

yum -y install php70w-fpm php70w-opcache

3.安裝完之後啟動php-fpm

systemctl start php-fpm

4.檢視版本以檢測是否安裝成功

php -v

三、檢測PHP是否能與Nginx互通

1.在Nginx的預設HTML資料夾裡(/usr/local/webserver/nginx/html/)新建一個index.php,內容如下:

<?php    phpinfo();?>

2.修改Nginx的組態檔(可使用find /|grep nginx.conf搜尋組態檔位置)Nginx.conf,修改新增如下:

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ .php$ {
        #    proxy_pass   http://127.0.0.1;        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #        location ~ .php$ {
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }

要將原屬性修改成藍色字型部分,不然存取index.php會出現以下情況(php-fpm找不到原SCRIPT_FILENAME裡執行的php檔案)

3.重新啟動Nginx

/usr/local/webserver/nginx/sbin/nginx -s reload

4.存取域名(IP)/index.php出現以下內容即為設定成功

四、檢測PHP是否能與mysql互通

將上一份index.PHP內容修改如下

<?php

// 建立連線
$test = mysqli_connect('localhost','root','qq1234');//資料庫伺服器地址,賬號名,密碼

// 檢測
if (!$test) echo "連線失敗,請檢查mysql服務以及賬戶密碼";
echo "資料庫連線成功!";
?>

修改完之後直接存取index.php,無需重新啟動Nginx

以上就是centos yum安裝php7的方法詳解的詳細內容,更多請關注TW511.COM其它相關文章!