优化 Nginx worker 进程最大打开文件数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了优化 Nginx worker 进程最大打开文件数相关的知识,希望对你有一定的参考价值。
[[email protected] ~]# cat /usr/local/nginx/conf/nginx.conf
worker_processes 2;
worker_cpu_affinity 01 10;
worker_rlimit_nofile 65535; # worker 进程最大打开文件数,可设置为优化后的 ulimit -HSn 的结果
user nginx nginx;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server_tokens off;
server {
listen 80;
server_name www.abc.com;
location / {
root html/www;
index index.html index.htm;
}
}
}
以上是关于优化 Nginx worker 进程最大打开文件数的主要内容,如果未能解决你的问题,请参考以下文章