1. 程式人生 > >CentOS7 配置 nginx php php-fpm

CentOS7 配置 nginx php php-fpm

xxx status linu 基礎 found fig -1 -h tail

上一篇說到安裝 php

裝完並沒有任何設置,這篇記錄一下設置。先設置 nginx 吧,nginx 網上多如繁星的設置但大都比較簡單,屬於基礎設置,因此此處只貼出設置後的結果,用紅色框表示一些自己改動或需要註意的地方

技術分享

技術分享

nginx 的基礎設置很簡單,設置個三次以上都能直接記住了。自己配置了一下 關於400、500系列錯誤的默認顯示路徑,404、403錯誤都顯示 40x.html,500 的幾個錯誤都顯示 50x.html 錯誤,這樣頁面就能自己定義了。比如現在 404 就會顯示這樣一個頁面

技術分享

啟動 nginx遇到了插曲

因為是編譯安裝,因此安裝後是這樣啟動的

cd /usr/local/nginx
sudo 
./nginx

今天在寫配置時發現網上神句無法啟動

sudo systemctl start nginx

技術分享

百度大法讓寫一個腳本,好吧,寫,打開 vim

#!/bin/sh 
# 
# nginx - this script starts and stops the nginx daemon 
# 
# chkconfig:   - 85 15 
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \ 
#               proxy and IMAP/POP3 proxy server 
# processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit
0 nginx="/usr/local/nginx/sbin/nginx" prog=$(basename $nginx) NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf" [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx lockfile=/var/lock/subsys/nginx start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 echo -n $"Starting $prog: " daemon $nginx -c $NGINX_CONF_FILE retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " killproc $prog -QUIT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval killall -9 nginx } restart() { configtest || return $? stop sleep 1 start } reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $nginx -HUP RETVAL=$? echo } force_reload() { restart } configtest() { $nginx -t -c $NGINX_CONF_FILE } rh_status() { status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart|configtest) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}" exit 2 esac #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: Nginx is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0 nginx="/usr/local/nginx/sbin/nginx" prog=$(basename $nginx) NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf" [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx lockfile=/var/lock/subsys/nginx start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 echo -n $"Starting $prog: " daemon $nginx -c $NGINX_CONF_FILE retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " killproc $prog -QUIT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval killall -9 nginx } restart() { configtest || return $? stop sleep 1 start } reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $nginx -HUP RETVAL=$? echo } force_reload() { restart } configtest() { $nginx -t -c $NGINX_CONF_FILE } rh_status() { status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart|configtest) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}" exit 2 esac

然後執行

:w /etc/init.d/nginx
:q

sudo chmod 755 /etc/init.d/nginx
sudo chkconfig --add nginx

完成後,可以用以下命令對 nginx 進行操作(還有插曲)

#啟動 nginx 服務
sudo service nginx start

#停止 nginx 服務
sudo service nginx stop

#無間斷服務重啟
sudo service nginx reload

我要描述的插曲就是 腳本編輯完之後,用命令似乎無法停止 nginx,執行完命令依舊可以瀏覽,可以通過 sudo kill -quit nginx 這樣的形式關停

先往下繼續吧,安裝 php-fpm 組件

sudo yum install php-fpm

技術分享

技術分享

編輯一下 /etc/php.ini (吐槽下 linux 下的配置文件在這個位置?)

#自願是否先備份一下
sudo cp /etc/php.ini /etc/php.ini.backup

sudo vim /etc/php.ini

/cgi.fix_pathinfo
找到後去掉前面的分號 ;
:wq

配置 www.conf

#自願備份一下 www.conf
sudo cp /etc/php.fpm.d/www.conf /etc/php-fpm.d/www.conf.backup

sudo vim /etc/php.fpm.d/www.conf

#將 user = xxxx 改為 user = 已經存在的有權限的用戶
#將 grouip = xxx 改為 group = 已經存在的有權限的組
#以上兩句是百度出來的,在虛擬機上我改為了當前用戶名

依次啟動 php-fpm 和 (重)啟動 nginx

sudo systemctl start php-fpm

#設置php-fpm開機啟動
#sudo systemctl enable php-fpm

sudo systemctl restart nginx

這裏的插曲在於我用 kill -quit nginx 退出之後再用 service start nginx 時遇到了錯誤提示

技術分享

然後用 systemctl start nginx 啟動了,但一會兒也會出現提示

技術分享

暫時還不明所以,但 php 可以運行了 技術分享

一些記錄和鏈接:

  • 參考《nginx啟動失敗Failed to reload nginx.service: Unit not found》:http://blog.csdn.net/wangjinbao5566/article/details/72938783
  • 參考《centos下配置nginx支持php》:http://www.cnblogs.com/mitang/p/5524540.html
  • 參考《centos7安裝並配置nginx+php》:http://www.cnblogs.com/cglWorkBook/p/5431571.html
  • 參考《如何正確配置 Nginx 和 PHP》:http://blog.jobbole.com/50121/

CentOS7 配置 nginx php php-fpm