1、nginx进程关系
根据服务器配置,或者说是CPU核数来定。
CPU核数和worker进程一一对应,效率最高。因为worker进程就只有一个线程。
日常情况master工作很清闲,只有在生成worker的时候,包括后期管理生命周期才会用,所以日常不占用资源。
work的数量不能大于CPU核数,如果worker进程数大于CPU核心数,他们之间会形成资源争抢,争抢的时间大于处理事务的时间,所以,cpu有多少核,work就设置多少进程。
worker设置auto 即可。
2、nginx配置文件 nginx.conf
备份文件:nginx.conf.default
worker_processes 1; ##设置为cpu核心数 events { worker_connections 1024; ##每一个worker进程可以处理的连接数,同时受到了socket句柄的限制,理论上越多越好,但也要考虑服务器中服务间的平衡 } http { include mime.types; ##支持可以显示的类型,xml,mail,mov,avi等,通过它配置 default_type application/octet-stream; ##默认类型 sendfile on; ##使能网络和磁盘间的数据交换,提供交换效率。如果为off,则默认使用内部函数write()和read()进行 keepalive_timeout 65; ##长链接时,一次最多连接65s server { listen 80; ##80端口监听 server_name localhost; ##服务器名称、IP、127.0.0.1、localhost location / { root html; ##web服务的文件的根目录 index index.html index.htm; ##默认的页面。如果直接访问http://172.18.1.54时,后面不带后缀时,直接跳转到index.html,如果没有index.html,则调到index.htm. ##如果没找到,返回404/403 } error_page 500 502 503 504 /50x.html; ##如果访问发生错误,会跳到/50x.html location = /50x.html { root html; } } }
文章评论