PHP 設置 socket鏈接

摘要: 做者博文地址:https://www.cnblogs.com/liu-shuai/php

nginx和fastcgi的通訊方式有兩種,一種是TCP的方式,一種是unix socket方式.

socket方式不會走到tcp層,tcp方式則會走到ip層。所以,理論上說socket鏈接方式效率會更好一點。

TCP和unix domain socket方式對比
    TCP是使用TCP端口鏈接127.0.0.1:9000
    Socket是使用unix domain socket鏈接套接字/dev/shm/php-fpm.sock

一、修改php-fpm.confnginx

1 ;listen = 127.0.0.1:9000     # 註釋
2 listen = /dev/shm/php-fpm.sock     # /dev/shm/爲內存文件系統,確保可讀寫
3 listen.owner = nginx
4 listen.group = nginx
5 
6 service php-fpm restart


二、修改nginx.confdom

1 #fastcgi_pass     127.0.0.1:9000;
2 fastcgi_pass    unix:/dev/shm/php-fpm.sock;
3 
4 /usr/local/nginx/sbin/nginx -s reload
相關文章
相關標籤/搜索