nginx工作原理
nginx由内核和模块组成。其中,内核的设计非常微小和简洁,完成的工作也非常简单,仅仅通过查找配置文件将客户端请求映射到一个location block(location是nginx配置中的一个指令,用于URI匹配),而在这个location中所配置的每个指令将会启动不同的模块去完成相应的工作。
nginx的模块分类
nginx的模块从结构上分为核心模块、基础模块和第三方模块
- HTTP模块、EVENT模块和MAIL模块等属于核心模块
- HTTP Access模块、HTTP FastCGI模块、HTTP Proxy模块和HTTP Rewrite模块属于基本模块
- HTTP Upstream模块、Request Hash模块、Notice模块和HTTP Access Key模块属于第三方模块
用户根据自己的需要开发的模块都属于第三方模块。正是有了如此多模块的支撑,nginx的功能才会如此强大
再下载nginx安装包,解压以后,进入解压目录下的configure目录,查看帮助文档,查看核心模块和基础模块
[root@localhost nginx-1.20.1]# ./configure --help
.......
--with-http_ssl_module enable ngx_http_ssl_module
--with-http_v2_module enable ngx_http_v2_module
--with-http_realip_module enable ngx_http_realip_module
--with-http_addition_module enable ngx_http_addition_module
--with-http_xslt_module enable ngx_http_xslt_module
--with-http_xslt_module=dynamic enable dynamic ngx_http_xslt_module
--with-http_image_filter_module enable ngx_http_image_filter_module
........
//含有with字样的,在编译时如果不添加此功能是自身不带的,如果想要使用此功能,编译时加上需要的参数
......
--without-http_charset_module disable ngx_http_charset_module
--without-http_gzip_module disable ngx_http_gzip_module
--without-http_ssi_module disable ngx_http_ssi_module
--without-http_userid_module disable ngx_http_userid_module
--without-http_access_module disable ngx_http_access_module
--without-http_auth_basic_module disable ngx_http_auth_basic_module
--without-http_mirror_module disable ngx_http_mirror_module
......
//含有without字样的,编译时是默认带有此功能,若不想使用此功能,编译时加上需要的参数即可
nginx模块从功能上分为三类,分别是:
- Proxies(代理器模块)。就是nginx的HTTP Upstream之类的模块,这些模块主要与后端一些服务比如fastcgi等操作交互,实现服务代理和负载均衡等功能
- Handlers(处理器模块)。此类模块直接处理请求,并进行输出内容和修改headers信息等操作。handlers处理器模块一般只能有一个
- Filters(过滤器模块)。此类模块主要对其他处理器模块输出的内容进行修改操作,最后由nginx输出
nginx基本模块:所谓基本模块,指的是nginx默认的功能模块,它们提供的指令,允许你使用定义nginx基本功能的变量,在编译时不能被禁用,包括:
- 核心模块:基本功能和指令,如进程管理和安全。常见的核心模块指令,大部分是放置在配置文件的顶部(每一行的最开始,官方文档顶部是叫main)
- 事件模块:在Nginx内配置网络使用的能力。常见的events(事件)模块指令,大部分是放置在配置文件的顶部
- 配置模块:提供包含机制
具体的指令,请参考nginx的官方文档
点击官方文档链接,可以看到配置文件的样例,和指令的使用方法
nginx工作原理详解
nginx的模块直接被编译进nginx,因此属于静态编译方式。
启动nginx后,nginx的模块被自动加载,与Apache不一样,首先将模块编译为一个so文件,然后在配置文件中指定是否进行加载。
在解析配置文件时,nginx的每个模块都有可能去处理某个请求,但是同一个处理请求只能由一个模块来完成。
nginx的进程架构:
- 启动nginx时,会启动一个Master进程,这个进程不处理任何客户端的请求,主要用来产生worker线程,一个worker线程用来处理n个request。(默认是一个worker线程,可以再配置文件中修改worker数)
[root@localhost conf]# vim nginx.conf
#user nobody;
worker_processes 1; //此处就是worker进程数,根据自己的需求设置
//默认worker数,此时只有一个
[root@localhost ~]# ps -ef |grep nginx
root 33402 1 0 10:32 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx
nginx 33403 33402 0 10:32 ? 00:00:00 nginx: worker process
root 34091 34068 0 18:45 pts/1 00:00:00 grep --color=auto nginx
//修改worker进程数
[root@localhost conf]# vim nginx.conf
#user nobody;
worker_processes 4; //修改为4
[root@localhost ~]# nginx -s reload //修改完配置文件重新加载
[root@localhost ~]# ps -ef |grep nginx
root 33402 1 0 10:32 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx
nginx 34095 33402 0 18:50 ? 00:00:00 nginx: worker process
nginx 34096 33402 0 18:50 ? 00:00:00 nginx: worker process
nginx 34097 33402 0 18:50 ? 00:00:00 nginx: worker process
nginx 34098 33402 0 18:50 ? 00:00:00 nginx: worker process
root 34100