nginx與php-fpm通訊的兩種方式

簡述

在linux中,nginx服務器和php-fpm能夠經過tcp socket和unix socket兩種方式實現。php

unix socket是一種終端,可使同一臺操做系統上的兩個或多個進程進行數據通訊。這種方式須要再nginx配置文件中填寫php-fpm的pid文件位置,效率要比tcp socket高。linux

tcp socket的優勢是能夠跨服務器,當nginx和php-fpm不在同一臺機器上時,只能使用這種方式。nginx

  • windows系統只能使用tcp socket的通訊方式
    配置方法
  1. tcp socket:tcp socket通訊方式,須要在nginx配置文件中填寫php-fpm運行的ip地址和端口號。
location ~ \.php$ {
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
}
  1. unix socket:unix socket通訊方式,須要在nginx配置文件中填寫php-fpm運行的pid文件地址。
//service php-fpm start生成.sock文件
location ~ \.php$ {
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
}

php-fpm的運行端口號和socket文件的地址都是在php-fpm.conf中配置的。
php-fpm.conf文件在php安裝文件的/etc目錄下,
好比你的php安裝在/opt/php目錄,則應該是/opt/php/php-fpm.conf。laravel

; The address on which to accept FastCGI requests.
; Valid syntaxes are:
;   'ip.add.re.ss:port'    - to listen on a TCP socket to a specific IPv4 address on
;                            a specific port;
;   '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
;                            a specific port;
;   'port'                 - to listen on a TCP socket to all IPv4 addresses on a
;                            specific port;
;   '[::]:port'            - to listen on a TCP socket to all addresses
;                            (IPv6 and IPv4-mapped) on a specific port;
;   '/path/to/unix/socket' - to listen on a unix socket.
; Note: This value is mandatory.
listen = 127.0.0.1:9000
listen = /var/run/php-fpm.sock

經過註釋能夠看到,php-fpm的listen指令能夠經過五種方式處理FastCGI請求,分別是:web

  1. ipv4:端口號
  2. ipv6:端口號
  3. port至關於 0.0.0.0:port,本機全部ipv4對應的端口號
  4. unix socket文件

直接配置使用unix socket文件以後,會遇到access deny的問題,因爲socket文件本質上仍是一個文件,存在權限控制問題,默認由root用戶建立,所以nginx進程無權限訪問,應該配置以下命令:sql

; Set permissions for unix socket, if one is used. In Linux, read/write
; permissions must be set in order to allow connections from a web server. Many
; BSD-derived systems allow connections regardless of permissions.
; Default Values: user and group are set as the running user
;                 mode is set to 0660
listen.owner = www
listen.group = www 
listen.mode = 0660

能夠配置nginx和php-fpm都是用www用戶,這樣就不會存在權限問題,固然也能夠建立不一樣的用戶,而後加入同一個組,便於分配權限。shell

以上內容但願幫助到你們,不少PHPer在進階的時候總會遇到一些問題和瓶頸,業務代碼寫多了沒有方向感,不知道該從那裏入手去提高,對此我整理了一些資料,包括但不限於:分佈式架構、高可擴展、高性能、高併發、服務器性能調優、TP6,laravel,YII2,Redis,Swoole、Swoft、Kafka、Mysql優化、shell腳本、Docker、微服務、Nginx等多個知識點高級進階乾貨須要的能夠免費分享給你們須要請戳這裏windows

相關文章
相關標籤/搜索