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的方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!