首頁  >  文章  >  後端開發  >  使用Nginx負載平衡搭建高效能.NETweb應用程式二

使用Nginx負載平衡搭建高效能.NETweb應用程式二

WBOY
WBOY原創
2016-08-08 09:32:541501瀏覽

在文章《使用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服務

2)修改Nginx配置項,具體配置說明,我們在參數設定部門說明,然後驗證服務是否正常啟動。

3)訪問位址http://localhost:8010/WebForm1.aspx觀察結果

 


(4)這樣我們就可以模擬出負載平衡效果了,ok

四、其他說明

(1)配置網域存取:首先我們要在Nginx中新增網域設置,其次我們要在本機設定127.0.0.1映射為網域名稱

這樣我們就可以這樣訪問了:http://huangxiang:8010/WebForm1.aspx

(2)配置Ngnix啟動的進程數量,我們可以在進程中關注其進程數量變化


五、參數設定

#定义Nginx运行的用户和用户组
#user  nobody;
#Nginx进程数,建议和cpu总内核一致
worker_processes  2;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
#定义单个进程的最大连接数(实际最大连接数要除以2)
    worker_connections  1024;
}

#定义http服务器
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;


   #服务器的集群
    upstream  huangxiang.com {  #服务器集群名字
  		#server   172.16.21.13:8081 weight=1;#服务器配置   weight是权重的意思,权重越大,分配的概率越大。
		#server   192.168.1.186:8081 weight=1;
		#server   172.16.1.14:8081 weight=2;
		#server   172.16.1.15:8081 weight=1;
		#server   172.16.1.15:80 weight=1;		
		server    127.0.0.1:8011 weight=1;
		server    127.0.0.1:8012 weight=2;
	}	
#虚拟机主机配置
    server {
        listen       8010;#端口号
        server_name  localhost huangxiang.com;#域名可以有多个,多个用空格分开

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        #location / {
        #    root   html;
        #    index  index.html index.htm;
        #}
	location / {
            proxy_pass http://huangxiang.com;
            proxy_redirect default;
        }


        #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;
    #    }
    #}

}



以上就介紹了使用Nginx負載平衡建立高效能.NETweb應用程式二,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn