服務器linux環境運行php?
以centos7為例,模式為lnmp。(使用root用戶登錄)
更新阿里云yum源1、進入源目錄
# cd /etc/
yum.repos.d/
2、備份原repo文件
# for name in `ls`; do mv $name ${name}.bak ; done
3、下載阿里云yum源
# curl
http://mirrors.aliyun.com/repo/Centos-7.repo > Centos-7.repo
4、清理并生成緩存并安裝epel
nginx安裝1、安裝pcre,可以支持rewrite功能。
# yum install pcre*
2、安裝openssl,可以支持ssl功能
# yum install openssl*
3、從官網下載穩定版,此時是1.16.1,然后解壓(如果沒有wget ,請執行yum install wget)
# cd /usr/local/src
# wget http://nginx.org/download/nginx-1.16.1.tar.gz
# tar -zxvf nginx-
1.16.1.tar.gz
# cd nginx-1.16.1
4、安裝軟件三板斧(./configure , make , make install)。
# ./configure --prefix=/usr/local/nginx-1.16.1 --with-http_ssl_module --with-http_v2_module --with-http_stub_status_module --with-pcre
# make
# make install
5、centos7防火墻打開http, https
# firewall-cmd --zone=public --add-service=http --permanent
# firewall-cmd --zone=public --add-service=https --permanent
# firewall-cmd --reload
6、啟動nginx
# /usr/local/nginx-1.16.1/sbin/nginx
當通過你系統的IP地址訪問出現如下畫面,則安裝成功
關閉nginx:
# /usr/local/nginx-1.16.1/sbin/nginx -s stop
當改變了nginx.conf后,要重置:
# /usr/local/nginx-1.16.1/sbin/nginx -s reload
安裝php和php-fpm1、安裝php7,這里選擇php70w,需更新webtatic源
# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
# yum install php70w
2、安裝php擴展,這里以xml擴展示例,你也可以使用yum list php70w*查看所有擴展。
#yum install php70w-xml
3、查看安裝結果
#php -v (查看版本)
#php -m (查看擴展)
4、安裝php-fpm,(這個與nginx一起使用來解析PHP腳本的)
#yum install php70w-fpm
5、啟動php-fpm,并加入開機啟動
# systemctl start php-fpm
# systemctl enable php-fpm
6、新建www用戶
# useradd www -s /sbin/nologin
7、修改nginx.conf,加入php解析
第2行
第45行
第65-71行改成如下圖所示:
8、將html目錄所有者改為www,并將權限改為755
# chown -Rf www:www /usr/local/nginx-1.16.1/html
# chmod -Rf 755 /usr/local/nginx-1.16.1/html
9、重啟nginx看到如下結果,即配置成功
# /usr/local/nginx-1.16.1/sbin/nginx -s reload