Attualmente sto eseguendo nginx / 1.0.15 su un sistema operativo Centos 6.6. Il server ha le seguenti specifiche:
- CPU Intel (R) Atom (TM) C2750 a 2,40 GHz (8 core)
- Ram da 32 GB
- 5 x 6000 GB 7200 RPM (Raid 10)
Il problema
Il server ha una connessione a 1 Gbit / s, tuttavia supera e colli di bottiglia dopo 400-500 mbit / s. Il servizio inizia a diminuire a circa 100 connessioni .. e la velocità con il server diminuisce drasticamente (nonostante la larghezza di banda del 50% sia ancora disponibile)
Il server NGINX serve esclusivamente per la gestione di file .mp4 statici. Ogni file è in genere 400-1200 MB (700 MB è la media)
Ho provato molte configurazioni e quasi tutte mi danno gli stessi risultati .. Sono estremamente frustrato ..
Anche il caricamento del server non supera mai lo 0,3.
C'è qualcosa di palesemente sbagliato o sbagliato nella mia configurazione? Qualunque cosa potrebbe aiutare.
Le configurazioni
/etc/nginx/nginx.conf
user nginx;
worker_processes 9;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 51200;
use epoll;
}
worker_rlimit_nofile 600000;
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;
aio on;
sendfile off;
tcp_nopush off;
tcp_nodelay on;
#keepalive_timeout 0;
keepalive_timeout 65;
output_buffers 1 3m;
#gzip on;
include /etc/nginx/conf.d/*.conf;
open_file_cache max=10000 inactive=5m;
open_file_cache_valid 2m;
open_file_cache_min_uses 1;
open_file_cache_errors on;
}
/etc/nginx/conf.d/default.conf
server {
listen 80 default_server sndbuf=32k;
server_name _;
#charset koi8-r;
#access_log logs/host.access.log main;
include /etc/nginx/default.d/*.conf;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /Videos/ {
root /home;
gzip off;
gzip_static off;
mp4;
mp4_max_buffer_size 300m;
}
location /stats {
stub_status on;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}