我的服务器具有以下规格
CPU: 6 Cores Intel(R) Xeon(R) CPU E5-2650 v2 @ 2.60GHz
RAM: 32 GB
我遇到了 nginx+php-fpm 问题。它们不知为何占用了太多资源。即使我重新启动 nginx + php-fpm,启动过程也会使用很多资源。
我的 nginx 配置如下:
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
worker_rlimit_nofile 300000;
events {
worker_connections 6000;
use epoll;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
我的 php-fpm 池配置如下
[www]
user = nginx
group = nginx
listen = /var/run/php5-fpm.sock
listen.owner = nginx
listen.group = nginx
listen.allowed_clients = 127.0.0.1
pm = ondemand
pm.max_children = 1500;
pm.process_idle_timeout = 5;
chdir = /
security.limit_extensions = .php
我正在使用 pm.ondemand,因为我的网站必须同时支持许多并发连接,而我无法使用动态/静态来实现。
我猜这不是问题,因为正如我之前所说,当我同时重新启动 nginx+php-fpm 时,它们在没有任何请求的情况下占用了太多资源。
以下是 CPU 使用率的屏幕截图
http://s28.postimg.org/v54q25zod/Untitled.png