使用Nginx负载均衡搭建高性能.NETweb应用程序二

时间:2022-12-10 22:30:10

在文章《使用Nginx负载均衡搭建高性能.NETweb应用程序一》中,让我们对Nginx有了一个初步认识,下面我们将在windows平台下面使用Nginx演示集群部署我们的web应用。

一、下载Nginx部署包

到Nginx官网去下载一个windows平台下面的Nginx部署包,目前我下载的是一个nginx-1.6.2版本的。

二、命令启动服务
启动:start nginx.exe
停止:nginx -s stop

重新加载: nginx -s reload

三、实例搭建

选:我们要在我们的iis上面把我们做好的web应用部署上去,部署到不同的机器上面,设置好对应的ip和端口号,因为我在本机模拟出效果,所以我就在本
机的iis上面部署了2个web应用,第一个web应用部署在localhost:8011端口,第二个应用部署为localhost:8012端口,同
时为了看到演示效果,我们把里面的WebForm1.aspx页面做了一个标记,里面标记为:第几个web应用程序的页面,实际我们部署系统,不需要这样
做,就是把我们的一个web应用部署到不同机器上面的服务器上,下面所示。

web应用1地址:http://localhost:8011/WebForm1.aspx
web应用2地址:http://localhost:8012/WebForm1.aspx

(1)启动Nginx服务

使用Nginx负载均衡搭建高性能.NETweb应用程序二

(2)修改Nginx配置项,具体配置说明,我们在参数设置部门说明,然后验证服务是否正常启动。

使用Nginx负载均衡搭建高性能.NETweb应用程序二

(3)访问地址http://localhost:8010/WebForm1.aspx观察结果

使用Nginx负载均衡搭建高性能.NETweb应用程序二

使用Nginx负载均衡搭建高性能.NETweb应用程序二

(4)这样我们就可以模拟出负载均衡效果了,ok

四、其他说明

(1)配置域名访问:首先我们要在Nginx中添加域名设置,其次我们要在本机设置127.0.0.1映射为域名

使用Nginx负载均衡搭建高性能.NETweb应用程序二

这样我们就可以这样访问了:http://huangxiang:8010/WebForm1.aspx

(2)配置Ngnix启动的进程数量,我们可以在进程中关注其进程数量变化

使用Nginx负载均衡搭建高性能.NETweb应用程序二


五、参数设置

    1. #定义Nginx运行的用户和用户组
    2. #user  nobody;
    3. #Nginx进程数,建议和cpu总内核一致
    4. worker_processes  2;
    5. #error_log  logs/error.log;
    6. #error_log  logs/error.log  notice;
    7. #error_log  logs/error.log  info;
    8. #pid        logs/nginx.pid;
    9. events {
    10. #定义单个进程的最大连接数(实际最大连接数要除以2)
    11. worker_connections  1024;
    12. }
    13. #定义http服务器
    14. http {
    15. include       mime.types;#定义文件扩展名和文件类型映射表
    16. default_type  application/octet-stream;
    17. #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    18. #                  '$status $body_bytes_sent "$http_referer" '
    19. #                  '"$http_user_agent" "$http_x_forwarded_for"';
    20. #access_log  logs/access.log  main;
    21. sendfile        on;
    22. #tcp_nopush     on;
    23. #keepalive_timeout  0;
    24. keepalive_timeout  65;
    25. #gzip  on;
    26. #服务器的集群
    27. upstream  huangxiang.com {  #服务器集群名字
    28. #server   172.16.21.13:8081 weight=1;#服务器配置   weight是权重的意思,权重越大,分配的概率越大。
    29. #server   192.168.1.186:8081 weight=1;
    30. #server   172.16.1.14:8081 weight=2;
    31. #server   172.16.1.15:8081 weight=1;
    32. #server   172.16.1.15:80 weight=1;
    33. server    127.0.0.1:8011 weight=1;
    34. server    127.0.0.1:8012 weight=2;
    35. }
    36. #虚拟机主机配置
    37. server {
    38. listen       8010;#端口号
    39. server_name  localhost huangxiang.com;#域名可以有多个,多个用空格分开
    40. #charset koi8-r;
    41. #access_log  logs/host.access.log  main;
    42. #location / {
    43. #    root   html;
    44. #    index  index.html index.htm;
    45. #}
    46. location / {
    47. proxy_pass http://huangxiang.com;
    48. proxy_redirect default;
    49. }
    50. #error_page  404              /404.html;
    51. # redirect server error pages to the static page /50x.html
    52. #
    53. error_page   500 502 503 504  /50x.html;
    54. location = /50x.html {
    55. root   html;
    56. }
    57. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    58. #
    59. #location ~ \.php$ {
    60. #    proxy_pass   http://127.0.0.1;
    61. #}
    62. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    63. #
    64. #location ~ \.php$ {
    65. #    root           html;
    66. #    fastcgi_pass   127.0.0.1:9000;
    67. #    fastcgi_index  index.php;
    68. #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    69. #    include        fastcgi_params;
    70. #}
    71. # deny access to .htaccess files, if Apache's document root
    72. # concurs with nginx's one
    73. #
    74. #location ~ /\.ht {
    75. #    deny  all;
    76. #}
    77. }
    78. # another virtual host using mix of IP-, name-, and port-based configuration
    79. #
    80. #server {
    81. #    listen       8000;
    82. #    listen       somename:8080;
    83. #    server_name  somename  alias  another.alias;
    84. #    location / {
    85. #        root   html;
    86. #        index  index.html index.htm;
    87. #    }
    88. #}
    89. # HTTPS server
    90. #
    91. #server {
    92. #    listen       443 ssl;
    93. #    server_name  localhost;
    94. #    ssl_certificate      cert.pem;
    95. #    ssl_certificate_key  cert.key;
    96. #    ssl_session_cache    shared:SSL:1m;
    97. #    ssl_session_timeout  5m;
    98. #    ssl_ciphers  HIGH:!aNULL:!MD5;
    99. #    ssl_prefer_server_ciphers  on;
    100. #    location / {
    101. #        root   html;
    102. #        index  index.html index.htm;
    103. #    }
    104. #}
    105. }

使用Nginx负载均衡搭建高性能.NETweb应用程序二的更多相关文章

  1. 使用Nginx负载均衡搭建高性能.NETweb应用程序(转)

    一.遇到的问题 当我们用IIS服务器部署了一个web应用以后,当很多用户高并发访问的时候,客户端响应就会很慢,客户的体验就会很差,由于IIS接受到客户端请求的时候,就会创建一个线程,当线程达到几千个时 ...

  2. 使用Nginx负载均衡搭建高性能.NETweb应用程序一

    一.遇到的问题 当我们用IIS服务器部署了一个web应用以后,当很多用户高并发访问的时候,客户端响应就会很慢,客户的体验就会很差,由于IIS接受到客户端请求的 时候,就会创建一个线程,当线程达到几千个 ...

  3. Nginx负载均衡搭建(Window与Linux)

    windows上搭建nginx负载均衡 1.准备几台http服务器软件,这里选用一台apache一台tomcat apache(windows)下载链接:https://www.apachehaus. ...

  4. Nginx 负载均衡搭建

    配置文件Nginx/conf/nginx.conf 什么是负载均衡呢? 由于目前现有网络的各个核心部分随着业务量的提高,访问量和数据流量的快速增长,其处理能力和计算强度也相应地增大,使得单一的服务器设 ...

  5. linux下nginx负载均衡搭建

    [一.Nginx能做什么] 1.http服务器.Nginx是一个http服务可以独立提供http服务.可以做网页静态服务器. 2.虚拟主机.可以实现在一台服务器虚拟出多个网站.例如个人网路使用的虚拟主 ...

  6. [例子] nginx负载均衡搭建及测试

    一.Nginx + Tomcat 负载均衡测试(负载均衡+部分静态图片处理) 环境说明:  nginx+tomcat @ubuntu ok 首先你得有一个Ubuntu或者什么其他的linux. 安装j ...

  7. nginx负载均衡搭建phpmyadmin加入redis了解session会话原理

    myphpadmin项目理解cookie和session 当我们平时上网的时候,在刷新之后或者退出浏览器再次打开浏览器不需要登陆网页了,这就是利用了cookie和session: 环境配置 hostn ...

  8. Centos7 minimal 系列之Nginx负载均衡搭建(四)

    一.Nginx搭建请参考我的上篇文章 http://www.cnblogs.com/WJ--NET/p/8143899.html 二.在IIS上搭建2个网站 三.配置nginx 虚拟机和主机网络互通请 ...

  9. nginx 负载均衡集群解决方案 healthcheck_nginx_upstreams模块测试 (二)

    在这里详细讲解healthcheck_nginx_upstreams模块中存在的bug,对于healthcheck_nginx_upstreams模块的安装和使用请阅读上一篇blog进行学习. 测试环 ...

随机推荐

  1. GitHub实战系列汇总篇

    基础: 1.GitHub实战系列~1.环境部署+创建第一个文件 2015-12-9 http://www.cnblogs.com/dunitian/p/5034624.html 2.GitHub实战系 ...

  2. javaweb回顾第六篇谈一谈Servlet线程安全问题

    前言:前面说了很多关于Servlet的一些基础知识,这一篇主要说一下关于Servlet的线程安全问题. 1:多线程的Servlet模型 要想弄清Servlet线程安全我们必须先要明白Servlet实例 ...

  3. 用Ajax读取XML格式的数据

    ].firstChild.data);}catch(exception){ }}}}</script>

  4. python wsgi

    什么是wsgi? wsgi是一个web组件的接口防范,wsgi将web组件分为三类:web服务器,web中间件,web应用程序 wsgi基本处理模式为:wsgi Server -> wsgi m ...

  5. eslint 的 env 配置是干嘛使的?

    这笔修改体现了 env 和 global 的关系: https://github.com/g8up/youDaoDict/commit/8b05616f 官方文档表述: https://eslint. ...

  6. Golang的方法传递值应该注意的地方

    其实最近看了不少Golang接口以及方法的阐述都有一个地方没说得特别明白.就是在Golang编译隐式转换传递给方法使用的时候,和调用函数时的区别. 我们都知道,在我们为一个类型变量申明了一个方法的时候 ...

  7. 001&lowbar;ansible通过堡垒机登录

    一. 之前一直通过跳板机登录线上服务器,ssh可以的,如下图所示 vim ~/.ssh/config ssh xx.xx.xx.xx线上服务器是可以的,但是ansible执行显示目标主机不可达,其实a ...

  8. debug、release

    1.区别 Debug 和 Release 并没有本质的区别,他们只是VC预定义提供的两组编译选项的集合,编译器只是按照预定的选项行动.如果我们愿意,我们完全可以把Debug和Release的行为完全颠 ...

  9. 深入理解Python中的元类&lpar;metaclass&rpar;

    原文 译注:这是一篇在Stack overflow上很热的帖子.提问者自称已经掌握了有关Python OOP编程中的各种概念,但始终觉得元类(metaclass)难以理解.他知道这肯定和自省有关,但仍 ...

  10. 【运维实战】一次linux日志分割之路——将日志按照每小时进行分割,并按照&OpenCurlyDoubleQuote;日期-小时”格式保存

    是这样的,现在需要对nginx的access.log进行按照每小时进行分割,并且最好还要能够以 “日期+时间”的形式,命名保存. 两点,一个是按照每小时进行分割,一个是将日志以“日期+时间”的形式进行 ...