首頁 >後端開發 >php教程 >Nginx + IIS + Web前端(Spring MVC)-負載平衡(一)

Nginx + IIS + Web前端(Spring MVC)-負載平衡(一)

WBOY
WBOY原創
2016-07-29 09:01:451378瀏覽

引言

我們在開發大型的Web專案的時候,如果,我們的web發佈在一台伺服器的IIS上的時候,當大量的request到IIS的這個服務,電腦很容易崩潰。那我們就想了,為什麼,我們不把我們的服務放到多台電腦上呢?這樣當上一個request到192.168.**.252:8070的時候,我們可以讓下一個request到192.168.**.253:8071,這樣就可以減少我們的伺服器壓力。

現在就有問題了,USer發出的Request如何發到不同的伺服器上?這時候,就需要Nginx了。

現在我介紹一下Nginx上發布.net 的Web服務。

Nginx是一個解壓縮包,我們只需要在Nginx的伺服器上解壓縮,修改一下設定文件,Nginx就安裝好了。

Nginx的安裝與設定

Nginx解壓到C碟的根目錄下面:

Nginx + IIS + Web前端(Spring MVC)——负载均衡(一)下的nginx.conf檔:

大概解釋一下:

其中檔案時這樣的:

<span style="font-size:18px;">#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服务器,利用它的反向代理功能提供负载均衡支持
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;#开启高效文件传输模式,sendfile指令指定nginx是否调用sendfile函数来输出文件,对于普通应用设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置为off,以平衡磁盘与网络I/O处理速度,降低系统的负载。注意:如果图片显示不正常把这个改成off。
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65; #长连接超时时间,单位是秒

    gzip  on;#启用Gizp压缩
	
	#服务器的集群
    upstream  netitcast.com {  #服务器集群名字  		
		server    127.0.0.1:8030 weight=1;		#服务器配置   weight是权重的意思,权重越大,分配的概率越大。
		server    127.0.0.1:8040 weight=1;		
	}	

	#当前的Nginx的配置
    server {
        listen       8090;#监听80端口,可以改成其他端口
        server_name  localhost;##############	当前服务的域名

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        #location / {
        #    root   html;
        #    index  index.html index.htm;
        #}

	location / {
            proxy_pass http://netitcast.com;
            proxy_redirect default;
        }
		#location ~ \.(jpg|png|jpeg|bmp|gif|swf|css)$
        #{
         
         #   expires 30d;
          #   root /nginx-1.4.7;#root:
           # break;
        #}

		

        #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;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}
</span>
名字:


server  ip:port


我們將我們的專案發布那台伺服器的ip和連接埠上,我們就可以在這裡寫上ip和連接埠號碼。後面的weight為權重,就是如果兩個server都為1的話,就是request為1:1,第一個request在8030埠上訪問,第二個request在8040埠上訪問。

server{ listen 8090} 為nginx的監聽的連接埠號,就是我們存取只需要存取Nginx伺服器的ip和連接埠號碼就可以存取到我們的伺服器叢集裡面的服務了。

Nginx的原理:

Nginx配置好了,下一篇部落格中,將我們的Web服務發佈到我們的IIS上了。

參考部落格:http://blog.csdn.net/zhanghan18333611647/article/details/50282951Nginx + IIS + Web前端(Spring MVC)——负载均衡(一)

以上就介紹了Nginx + IIS + Web前端(Spring MVC)-負載平衡(一),包含了方面的內容,希望對PHP教學有興趣的朋友有所幫助。

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