日期:2011-05-23 22:50:00  来源:本站整理

Nginx最简单的反向代理负载均衡配置测试[服务器安全]

赞助商链接



  本文“Nginx最简单的反向代理负载均衡配置测试[服务器安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

 1. 前置阐明:我的 Nginx 版本是 0.7.63, 安装在 /usr/local/nginx 下,默许端口是 80 ,并重写了 Nginx 启动、关闭、重启和重载配置文件的脚本,放在 /usr/local/nginx/sbin/ 下,名为 nginxbak.sh .

Resin 利用的是 3.1.10 ,安装在 /usr/local/resin-3.1.10 ,端口设置为 8081 .

Tomcat 利用的是 6.0.29 ,安装在 /usr/local/apache-tomcat-6.0.29 下,端口设置为 8080 .

2.新建一个最简单的 web 工程,名叫 NginxTest

 

index.jsp 里的内容就是打印一句话,为辨别恳求拜候的是哪个后端服务器,语句里有辨别是利用哪个服务器的辨认词.

3.        NginxTest 工程上传到虚拟服务器上,并布置到呼应的后端服务器上去,它们的配置辨别以下:

Tomcat:

Resin:

  

改正 hosts 文件:

192.168.1.86 nginx.digu.com

辨别启动 tomcat(startup.sh)  resin(httpd.sh start) ,在浏览器中查看能否可拜候:

4.       tomcat  resin 作为 nginx 的后端服务器,配置一个最简单的服务器集群以演示它负载均衡情形.

Nginx 的配置文件内容以下:

  1. user root  root;   
  2. worker_processes  1;   
  3.     
  4. error_log  logs/error.log;   
  5. #error_log  logs/stdout.log  notice;   
  6. #error_log  logs/stdout.log  info;   
  7.     
  8. pid        logs/nginx.pid;   
  9.     
  10.     
  11. events {   
  12.    use epoll;      
  13.    worker_connections  1024;   
  14. }   
  15.     
  16.     
  17. http {   
  18.     include       mime.types;   
  19.     default_type  application/octet-stream;   
  20.     
  21.     sendfile        on;   
  22.     #tcp_nopush     on;   
  23.     
  24.     #keepalive_timeout  0;   
  25.     keepalive_timeout  65;   
  26.     
  27.     gzip  on;   
  28.     
  29.     upstream nginx.digu.com {   
  30.         server 127.0.0.1:8081;#resin   
  31.        server 127.0.0.1:8080;#tomcat   
  32.         }   
  33.     server {   
  34.         listen       80;   
  35.         server_name  nginx.digu.com;   
  36.     
  37.         charset utf-8;   
  38.     
  39.         location / {   
  40.             proxy_pass http://nginx.digu.com;# 必必要加 http 开首,拜候的就是此地址   
  41.             proxy_set_header   Host             $host;   
  42.             proxy_set_header   X-Real-IP        $remote_addr;   
  43.             proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;   
  44.              log_format  nginx.digu.com  '$remote_addr - $remote_user [$time_local] $request '  
  45.                                 '"$status" $body_bytes_sent "$http_referer" '  
  46.                                 '"$http_user_agent" "$http_x_forwarded_for"';   
  47.             access_log  logs/access.log  nginx.digu.com;   
  48.         }   
  49.     
  50.         #error_page  404              /404.html;   
  51.     
  52.         # redirect server error pages to the static page /50x.html   
  53.         #   
  54.         error_page   500 502 503 504  /50x.html;   
  55.         location = /50x.html {   
  56.             root   html;   
  57.         }   
  58.     
  59.         # proxy the PHP scripts to Apache listening on 127.0.0.1:80  
  60.         #   
  61.         #location ~ \.php$ {   
  62.         #    proxy_pass   http://127.0.0.1;   
  63.         #}   
  64.     
  65.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  
  66.         #   
  67.         #location ~ \.php$ {   
  68.         #    root           html;   
  69.         #    fastcgi_pass   127.0.0.1:9000;   
  70.         #    fastcgi_index  index.php;   
  71.         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;   
  72.         #    include        fastcgi_params;   
  73.         #}   
  74.     
  75.         # deny access to .htaccess files, if Apache's document root   
  76.         # concurs with nginx's one   
  77.         #   
  78.         #location ~ /\.ht {   
  79.         #    deny  all;   
  80.         #}   
  81.     }   
  82.     
  83. }  配置好后, reload 一下 nginx 的配置文件,即 ./nginxbak.sh reload
     

     

    启动 nginx  ./nginxbak start

    翻开浏览器拜候:

    再拜候一下:

    可以看到辨别拜候了 resin  tomcat .

    可以屏蔽 #server 127.0.0.1:8081;#resin 它,后重载 nginx.conf ,这时只能拜候 tocmat

    一样也可以屏蔽 #server 127.0.0.1:8080;#tomcat ,后重载 nginx.conf ,这时只能拜候 resin

    目前仍旧保持它们都不屏蔽,终止 tomcat 试下效果:

     

     

    此时通过 tomcat 无法拜候,通过 nginx 去拜候:

     
    此时你无论恳求多少次,都只有 resin 服务器举行呼应.

    以上是最简单的 nginx 负载均衡实行测试,还有更多的配置在今后再做测试.

  以上是“Nginx最简单的反向代理负载均衡配置测试[服务器安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • nginx后端安康监测
  • 织梦CMS安装利用教程 Win+Nginx+PHP+MySQL环境搭建
  • CentOS 下 Nginx + Keepalived 配置高可用Web站点
  • nginx服务器的安装和配置的办法介绍
  • CentOS6 yum搭建Linux+Nginx+PHP+MYSQL(LNMP)
  • 利用Nginx后如安在web利用中获得用户ip及原理注释
  • CentOS 6.2 安装Nginx并设置为开机服务
  • Nginx配置禁止通过IP拜候
  • Nginx + PHP 5.2.17(FastCGI) 502 Bad Gateway错误
  • nginx躲藏版本号
  • ubuntu 12.04 安装 Nginx+PHP5 (PHP-FPM) +MySQL主机详解
  • Nginx做web服务器linux内核参数优化
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .