Tuesday, February 3, 2015

nginx - php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream

I am stacked with following errors on my site when I test 200 hits per second.



First I received 499 errors




2017-04-09 03:22:45 Error 162.158.79.219 499 GET / HTTP/1.1 0 nginx access



2017-04-09 03:22:45 Error 162.158.79.87 499 GET / HTTP/1.1 0 nginx access




2017-04-09 03:22:45 Error 162.158.78.170 499 GET / HTTP/1.1 0 nginx access



2017-04-09 03:22:45 Error 162.158.78.68 499 GET / HTTP/1.1 0 nginx access




2nd Error start showing 502




2017-04-09 03:22:45 Error 162.158.79.135 502 GET / HTTP/1.1 166 nginx access




2017-04-09 03:22:45 Error 162.158.79.225 502 GET / HTTP/1.1 166 nginx access



2017-04-09 03:22:45 Error 162.158.78.110 502 GET / HTTP/1.1 166 nginx access



2017-04-09 03:22:45 Error 162.158.79.225 502 GET / HTTP/1.1 166 nginx access




and Finally I start receiving php-fpm.sock failed errors





2017-04-09 03:22:45 Error 162.158.79.207 20699#0: *3826365 connect() to unix:///var/www/vhosts/system/playhdpk.top/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream nginx error



2017-04-09 03:22:45 Error 162.158.79.207 20695#0: *3826367 connect() to unix:///var/www/vhosts/system/playhdpk.top/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream nginx error



2017-04-09 03:22:45 Error 162.158.79.207 20697#0: *3826369 connect() to unix:///var/www/vhosts/system/playhdpk.top/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream nginx error




My php-fpm-pool-settings are below, I believe this one is being generating errors may I am wrong



listen.backlog = 65535


;[php-fpm-pool-settings]
pm = dynamic
pm.max_children = 5000
pm.start_servers = 50
pm.min_spare_servers = 20
pm.max_spare_servers = 70
pm.max_requests = 2000



My nginx conf are below



user  nginx;
worker_processes 8;

# number of file descriptors used for nginx
# the limit for the maximum FDs on the server is usually set by the OS.
# if you don't set FD's then OS settings will be used which is by default 2000
worker_rlimit_nofile 99999;


error_log /var/log/nginx/error.log crit;

include /etc/nginx/modules.conf.d/*.conf;

events {

worker_connections 16192;
use epoll;
multi_accept on;
}



http {
include mime.types;
default_type application/octet-stream;

open_file_cache max=2048 inactive=20s;
open_file_cache_valid 30s;
open_file_cache_min_uses 5;
open_file_cache_errors off;



sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_requests 100000;
reset_timedout_connection on;
client_body_timeout 30;
send_timeout 15;


client_header_timeout 12;
proxy_connect_timeout 600s;
proxy_send_timeout 600s;
proxy_read_timeout 600s;

fastcgi_buffers 8 128k;
fastcgi_buffer_size 256k;
fastcgi_send_timeout 600s;
fastcgi_read_timeout 600s;


types_hash_max_size 2048;

gzip on;
gzip_min_length 1000;
gzip_proxied expired no-cache no-store private auth;
gzip_types application/x-javascript text/css application/javascript text/javascript text/plain text/xml application/json application/v$
gzip_disable "MSIE [1-6]\.(?!.*SV1)";


server_tokens off;


include /etc/nginx/conf.d/*.conf;
}


Note: Server specifications are below



OS CentOS 7.3



Processor: Intel Xeon E5-1620v2 - 4c/8t - 3.7 GHz/3.9 GH




Sever Ram: 64GB DDR3

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...