在Ubuntu上使用PHP-FPM(FastCGI Process Manager)處理高并發,可以通過以下幾個步驟來優化和配置:
首先,確保你已經安裝了PHP-FPM。你可以使用以下命令來安裝:
sudo apt update
sudo apt install php-fpm
PHP-FPM的配置文件通常位于 /etc/php/7.x/fpm/pool.d/www.conf
(其中 7.x
是你的PHP版本)。你需要根據你的需求調整以下參數:
pm:選擇進程管理方式,常用的有 dynamic
、ondemand
和 static
。
dynamic
:根據負載動態調整進程數。ondemand
:按需啟動進程。static
:固定數量的進程。pm = dynamic
pm.max_children = 50
pm.start_servers = 5
pm.min_spare_servers = 5
pm.max_spare_servers = 35
request_terminate_timeout:設置請求超時時間,防止長時間運行的腳本占用資源。
request_terminate_timeout = 30s
catch_workers_output:捕獲工作進程的輸出,便于調試。
catch_workers_output = yes
如果你使用的是Nginx或Apache作為Web服務器,需要配置它們以使用PHP-FPM。
server {
listen 80;
server_name example.com;
root /var/www/html;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.x-fpm.sock; # 根據你的PHP版本調整
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
<VirtualHost *:80>
ServerName example.com
DocumentRoot /var/www/html
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/php/php7.x-fpm.sock|fcgi://localhost"
</FilesMatch>
</VirtualHost>
為了更好地處理高并發,你可能需要調整一些系統參數:
文件描述符限制:增加每個進程可以打開的文件描述符數量。
ulimit -n 65535
你也可以在 /etc/security/limits.conf
中添加以下內容:
* soft nofile 65535
* hard nofile 65535
內核參數:調整TCP參數以提高網絡性能。
sudo sysctl -w net.core.somaxconn=4096
sudo sysctl -w net.ipv4.tcp_max_syn_backlog=4096
sudo sysctl -w net.ipv4.ip_local_port_range="1024 65535"
你可以將這些設置添加到 /etc/sysctl.conf
文件中,以便在重啟后仍然有效。
使用監控工具(如 htop
、top
、netdata
等)來監控服務器的性能,并根據實際情況進一步調優PHP-FPM和系統參數。
通過以上步驟,你應該能夠在Ubuntu上使用PHP-FPM有效地處理高并發請求。