현재 Centos 6.6 OS에서 nginx / 1.0.15를 실행하고 있습니다. 서버에는 다음과 같은 사양이 있습니다.
- Intel (R) Atom (TM) CPU C2750 @ 2.40GHz (8 코어)
- 32GB 램
- 5 개의 6000GB 7200RPM (Raid 10)
문제
서버의 연결은 1Gbit / s이지만 400-500mbit / s 후에는 병목 현상이 발생합니다. 약 100 개의 연결에서 서비스가 감소하기 시작합니다. 서버 속도는 급격히 떨어집니다 (50 %의 대역폭을 사용할 수 있음에도 불구하고)
NGINX 서버는 정적 .mp4 파일을 제공하기위한 것입니다. 각 파일은 일반적으로 400-1200MB (평균 700MB)입니다.
많은 구성을 시도했지만 거의 모든 구성에서 동일한 결과를 얻습니다. 매우 실망했습니다 ..
서버로드도 0.3을 통과하지 않습니다.
구성에 명백히 잘못되었거나 잘못 안내 된 것이 있습니까? 무엇이든 도움이 될 것입니다.
구성
/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;
}
}