我在两台不同的机器上安装并优化了nginx。 Machine1:具有2个CPU和相当低的系统资源。 Machine2:拥有4个CPU和更高的系统资源。
但他们仍然在大约相同数量的请求中失败。也许还有其他限制服务器的东西可能是soem OS设置而不一定是nginx设置。
我在CentOS -6.3上使用php-fpm设置了nginx。我在两个系统中都增加了ulimit -n值。
这是我的nginx.conf
user nginx;
worker_processes 2;
worker_rlimit_nofile 16384;
error_log /var/log/nginx/error.log crit;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
pid /var/run/nginx.pid;
events {
worker_connections 5000;
# essential for linux, optmized to serve many clients with each thread
use epoll;
multi_accept on;
}
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;
access_log off;
sendfile on;
tcp_nopush on;
server_tokens off;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ECDHE-RSA-AES256-SHA384:AES256-SHA256:RC4:HIGH:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!AESGCM;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
client_body_buffer_size 10K;
client_header_buffer_size 1k;
client_max_body_size 8m;
large_client_header_buffers 2 1k;
#keepalive_timeout 0;
keepalive_timeout 65;
keepalive_requests 100000;
gzip on;
gzip_proxied any;
gzip_min_length 256;
gzip_comp_level 4;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
open_file_cache_valid 30s;
open_file_cache_min_uses 2;
open_file_cache_errors on;
# Load config files from the /etc/nginx/conf.d directory
# The default server is in conf.d/default.conf
include /etc/nginx/conf.d/*.conf;
}
答案 0 :(得分:1)
检查您的PHP FPM池设置pm.*
- http://www.php.net/manual/en/install.fpm.configuration.php
pm.max_children int
当pm设置为static时要创建的子进程数,以及pm设置为dynamic时要创建的最大子进程数。此选项是强制性的。
此选项设置将要提供的同时请求数的限制。相当于带有mpm_prefork的ApacheMaxClients指令和原始PHP FastCGI中的PHP_FCGI_CHILDREN环境变量。
pm.start_servers int
启动时创建的子进程数。仅在pm设置为dynamic时使用。默认值:min_spare_servers +(max_spare_servers - min_spare_servers)/ 2。 pm.min_spare_servers int
所需的最小空闲服务器进程数。仅在pm设置为dynamic时使用。在这种情况下也是强制性的。
pm.max_spare_servers int
所需的最大空闲服务器进程数。仅在pm设置为dynamic时使用。在这种情况下也是强制性的 pm.max_requests int
每个子进程在重新生成之前应执行的请求数。这对于解决第三方库中的内存泄漏非常有用。对于无限请求处理,指定'0'。相当于PHP_FCGI_MAX_REQUESTS。默认值:0。