博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NGINX服务器
阅读量:5309 次
发布时间:2019-06-14

本文共 4763 字,大约阅读时间需要 15 分钟。

1. NGINX 

NGINX 是一个高性能的Web服务器,反向代理服务器和邮件服务器。其特点是占有内存少,并发能力强。

2. NGINX 进程

NGINX 有一个主进程和一个或多个工作进程。如果启用缓存,缓存加载器和缓存管理器进程也会运行。

 

 

主进程的主要目的是读取配置文件,管理工作进程等子进程。

工作进程处理实际的请求。工作进程的数量由nginx.conf配置文件中的worker_processes指令定义。

./nginx    #启动 nginx./nginx -s reload|reopen|stop|quit  #向主进程发送信号,重新加载配置|重新打开日志|立即关机|正常关机 ./nginx -t    #测试配置是否有语法错误

3. NGINX 配置

默认配置文件 conf/nginx.conf。

#user  nobody;worker_processes  1;#error_log  logs/error.log;#error_log  logs/error.log  notice;#error_log  logs/error.log  info;#pid        logs/nginx.pid; events {    worker_connections  1024;} http {    include       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  logs/access.log  main;    sendfile        on;    #tcp_nopush     on;    #keepalive_timeout  0;    keepalive_timeout  65;    #gzip  on;    server {        listen       80;        server_name  localhost;        #charset koi8-r;        #access_log  logs/host.access.log  main;        location / {            root   html;            index  index.html index.htm;        }        #error_page  404              /404.html;        # redirect server error pages to the static page /50x.html        #        error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   html;        }        # proxy the PHP scripts to Apache listening on 127.0.0.1:80        #        #location ~ \.php$ {        #    proxy_pass   http://127.0.0.1;        #}        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000        #        #location ~ \.php$ {        #    root           html;        #    fastcgi_pass   127.0.0.1:9000;        #    fastcgi_index  index.php;        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;        #    include        fastcgi_params;        #}        # deny access to .htaccess files, if Apache's document root        # concurs with nginx's one        #        #location ~ /\.ht {        #    deny  all;        #}    }    # another virtual host using mix of IP-, name-, and port-based configuration    #    #server {    #    listen       8000;    #    listen       somename:8080;    #    server_name  somename  alias  another.alias;    #    location / {    #        root   html;    #        index  index.html index.htm;    #    }    #}    # HTTPS server    #    #server {    #    listen       443 ssl;    #    server_name  localhost;    #    ssl_certificate      cert.pem;    #    ssl_certificate_key  cert.key;    #    ssl_session_cache    shared:SSL:1m;    #    ssl_session_timeout  5m;    #    ssl_ciphers  HIGH:!aNULL:!MD5;    #    ssl_prefer_server_ciphers  on;    #    location / {    #        root   html;    #        index  index.html index.htm;    #    }    #}}

4. 负载均衡

NGINX 负载均衡功能是通过 upstream 模块实现,使用 server 命令指定后端服务器的 IP 地址和端口,还可以设置状态值。

  • down  表示当前的server暂时不参与负载。
  • weight  负载的权重值。
  • max_fails  允许请求的失败次数,默认为1,配合 fail_timeout 一起使用。
  • fail_timeout  max_fails次失败后,暂停服务的时间。
  • backup  当其他所有非备机出现故障或者繁忙的时候,才会请求备机,访问压力最小。

负载均衡策略

(1)轮询(默认):将请求按时间顺序依次分发到不同的后端服务器。如果后端某台服务器宕机,则自动剔除故障机器。

upstream backserver {     server 192.168.10.11:80;     server 192.168.10.12:80; }

(2)加权轮询:指定轮询权重,weight 值越大,分发的几率就越大,主要用于后端服务器性能不均衡的情况。

upstream backserver {     server 192.168.10.11:80;    server 192.168.10.12:80 weight=3; }

(3)ip_hash:按用户IP的哈希值分发请求,来自同一个IP的请求会转发到同一台后端服务器,可以有效解决 session 共享问题。

upstream backserver {     ip_hash;     server 192.168.10.11:80;     server 192.168.10.12:80; }

(4)url_hash:按访问的 URL 的哈希值分发请求,每个 URL 会指向后端固定的某个服务器,可以进一步提高后端缓存服务器的效率。需要安装 hash 软件包。

(5)fair:根据后端服务器的响应时间来分发请求,响应时间短的优先分发。需要安装 upstream_fair 模块。

4. 七层负载均衡

七层负载均衡,也称"内容交换",代理服务器和客户端建立TCP连接,接收客户端的请求。然后再根据请求报文中的URL等应用层内容,代理服务器和后端服务器建立TCP连接,将请求分发到后端服务器。

四层是基于IP+端口的负载均衡,通过虚拟IP+端口接收请求,然后再分发到后端服务器;七层是基于URL等应用层信息的负载均衡,通过虚拟的URL或主机名接收请求,然后再分发到后端服务器。

5. 为什么要做动静分离?

Nginx 处理静态请求能力很强,但是动态请求处理能力不足,把动态请求交给 tomcat 处理。为了提高网站的响应速度,减轻服务器的压力,对于 jpg、css、js 等静态资源,我们可以在 Nginx 中进行缓存。当浏览器请求一个静态资源时,Nginx 就可以直接处理,而不用将请求转发给后端服务器。用户请求 jsp 等动态资源时,Nginx 则转发请求给 Tomcat 服务器来处理,再由 Nginx 将结果返回给用户。

6. 动静分离的 Nginx 配置:

upstream tomcat_server{     server 192.168.10.20:8080;  }     server {        listen  80;        server_name  localhost;        #access_log  logs/host.access.log  main;        # 静态资源存放目录        root  /image;         location / {            root   html;            index index.html index.htm;        }       # 动态请求的转发        location ~ .*.jsp$ {             proxy_pass  http://tomcat_server;             proxy_set_header  Host  $host;         }  # 静态请求直接读取 location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|css)$ {           expires  30d;  }

 

转载于:https://www.cnblogs.com/yutb/p/11248438.html

你可能感兴趣的文章
Java异常之try,catch,finally,throw,throws
查看>>
spring的配置文件详解
查看>>
Spring框架第一篇之Spring的第一个程序
查看>>
操作文件
查看>>
.net core 12
查看>>
SQL-android uri的使用(转载)
查看>>
数字pid笔记(1)
查看>>
一步一步学Linq to sql(六):探究特性
查看>>
[Everyday Mathematics]20150107
查看>>
【原】android启动时白屏或者黑屏的问题
查看>>
[原]unity3d 纹理旋转
查看>>
Automating hybrid apps
查看>>
java虚拟机---内存
查看>>
字符串相似度
查看>>
[置顶] 两主机搭建MySQL主从复制后,show slave status显示:Last_IO_Error: error connecting to master ……...
查看>>
重载操作符‘==’ , ‘type()’ , ‘+’
查看>>
怎么解决dorado跳转到spring mvc乱码的问题
查看>>
[通信] C#多线程Socket-文件传输
查看>>
强盗分宝石
查看>>
JQuery获取元素的方法总结
查看>>