मैं इस तरह की त्रुटियों में भागता रहता हूं,
[02-Jun-2012 01:52:04] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 19 idle, and 49 total children
[02-Jun-2012 01:52:05] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 16 children, there are 19 idle, and 50 total children
[02-Jun-2012 01:52:06] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 32 children, there are 19 idle, and 51 total children
[02-Jun-2012 03:10:51] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 18 idle, and 91 total children
मैंने php-fpm के लिए अपनी सेटिंग्स को इन में बदल दिया,
pm.max_children = 150 (It was at 100, i got a max_children reached and upped to 150)
pm.start_servers = 75
pm.min_spare_servers = 20
pm.max_spare_servers = 150
जिसके परिणामस्वरूप
[02-Jun-2012 01:39:19] WARNING: [pool www] server reached pm.max_children setting (150), consider raising it
मैंने अभी-अभी एक नई वेबसाइट लॉन्च की है, जिस पर ट्रैफ़िक की पर्याप्त मात्रा मिल रही है। यह ट्रैफ़िक वैध है और सीमा समाप्त होने पर उपयोगकर्ताओं को 504 गेटवे टाइमआउट मिल रहे हैं।
मेरे पास IPTABLES के साथ मेरे सर्वर से सीमित संबंध हैं और मैं fail2ban चल रहा हूं और nginx एक्सेस लॉग का ट्रैक रख रहा हूं। यातायात सभी वैध है, मैं सिर्फ उपयोगकर्ताओं के लिए कमरे से बाहर चल रहा हूं।
मैं वर्तमान में ubuntu 64bit के साथ एक दोहरे कोर बॉक्स पर चल रहा हूं।
free
total used free shared buffers cached
Mem: 6114284 5726984 387300 0 141612 4985384
-/+ buffers/cache: 599988 5514296
Swap: 524284 5804 518480
मेरी php.ini max_input_time = 60
मेरा नग्नेक्स कॉन्फिग है
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 19000;
# multi_accept on;
}
worker_rlimit_nofile 20000; #each connection needs a filehandle (or 2 if you are proxying)
client_max_body_size 30M;
client_body_timeout 10;
client_header_timeout 10;
keepalive_timeout 5 5;
send_timeout 10;
location ~ \.php$ {
try_files $uri /er/error.php;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 256 16k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
fastcgi_max_temp_file_size 0;
fastcgi_intercept_errors on;
fastcgi_pass unix:/tmp/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
मैं कनेक्शन से बाहर निकलने से रोकने के लिए क्या कर सकता हूं? ऐसा क्यों होता रहता है? मैं Google Analytics रियलटाइम पर अपने ट्रैफ़िक की निगरानी कर रहा हूं और जब उपयोगकर्ता गणना लगभग 120 php-fpm.log से ऊपर हो जाती है, तो इन वॉरियर्स से भरा होता है ..