Windows下用Nginx+Tomcat配置叢集負載平衡

來源:互聯網
上載者:User

標籤:nginx   負載平衡   windows   tomcat叢集   


        Nginx是一款輕量級的web伺服器/反向 Proxy伺服器,更詳細的釋義自己百度了。目前國內像新浪、網易等都在使用它。先說下我的伺服器軟體環境:

系統:windows_server_2008_standard_enterprise_and_datacenter_with_sp2_x64

當前啟動並執行Tomcat:非安裝版本Tomcat 6.0.36

就說這兩個關鍵的吧,目前遇到的問題是訪問量劇增單個tomcat已無力負載了,經常出現逾時的情況。於是就計劃用nginx布置負載平衡,網路上查到的資料多是介紹linux版本的nginx的布置及使用,但在windows中如果使用linux版本的nginx只能做個測試用,實際生產環境是無法使用的,會報如下的錯誤:

maximum number of descriptors supported by select() is 1024 while waiting for request

這是因為檔案訪問控制代碼數被限制為1024了,當訪問量大時就會無法響應。去網上有查過很多資料說是修改參數worker_connections可以解決此限制,還有其它很多說修改worker_rlimit_nofile 參數等,都嘗試了但都以失敗告終。就在準備換其它工具時在國外的一個論壇看到了一條回複,地址不記得了,說的是有專門的windows版本的nginx,已修改了檔案控制代碼資料的限制。後來下載後果真配置成功運行ok了。只要下載到正確的版本配置還是so easy的。以下為下載配置過程哈~~

nginx for windows官網:http://nginx-win.ecsds.eu/

nginx for windows下載載地址: http://nginx-win.ecsds.eu/download/

我下載的是nginx 1.7.7.1 WhiteRabbit.zip這個版本,太新的版本我怕不穩定。下載完畢後解壓安裝包,裡面有個簡要的更新資訊和安裝指南Readme nginx-win version.txt。關鍵資訊如下:

*** Default installation instructions;* New: unzip this version with folder structure* Old: overwrite with this version* Check nginx.conf, nginx-org.conf and nginx-win.conf* Windows optimization registry file: check your current values BEFORE setting the new ones
找到conf檔案夾中的nginx-win.conf,把它複製一份更名為nginx.conf,然後在此檔案中做配置,我的設定檔如下:

#user  nobody;# multiple workers works !# 背景工作處理序數:這個數值要根據伺服器CPU核心數來配置,如6核12線程的cpu可以配置為6或12。worker_processes  6;#錯誤記錄檔存放路徑#error_log  logs/error.log;#error_log  logs/error.log  notice;#error_log  logs/error.log  info;#pid        logs/nginx.pid;events {#設定單個進程同時開啟的最大串連數,這個值設定大些能接受較多的串連,當然這需要cpu和記憶體支援哦~~    worker_connections  32768;    # max value 32768, nginx recycling connections+registry optimization =     #   this.value * 20 = max concurrent connections currently tested with one worker    #   C1000K should be possible depending there is enough ram/cpu power    # multi_accept on;}http {    #include      /nginx/conf/naxsi_core.rules;    include       mime.types;    default_type  application/octet-stream;    #log_format  main  '$remote_addr:$remote_port - $remote_user [$time_local] "$request" '    #                  '$status $body_bytes_sent "$http_referer" '    #                  '"$http_user_agent" "$http_x_forwarded_for"';    #access_log  logs/access.log  main;#     # loadbalancing PHP#     upstream myLoadBalancer {#         server 127.0.0.1:9001 weight=1 fail_timeout=5;#         server 127.0.0.1:9002 weight=1 fail_timeout=5;#         server 127.0.0.1:9003 weight=1 fail_timeout=5;#         server 127.0.0.1:9004 weight=1 fail_timeout=5;#         server 127.0.0.1:9005 weight=1 fail_timeout=5;#         server 127.0.0.1:9006 weight=1 fail_timeout=5;#         server 127.0.0.1:9007 weight=1 fail_timeout=5;#         server 127.0.0.1:9008 weight=1 fail_timeout=5;#         server 127.0.0.1:9009 weight=1 fail_timeout=5;#         server 127.0.0.1:9010 weight=1 fail_timeout=5;#         least_conn;#     }# 在此處設定tomcat伺服器資訊,同樣tomcat也可以不在同一主機中。這裡設定了兩個tomcat服務,比重是1:1了。 localhost更換為伺服器的IP         upstream localhost{   #ip_hash;           server  127.0.0.1:9010 weight=1;           server  127.0.0.1:9020 weight=1;         }    sendfile        off;    #tcp_nopush     on;    server_names_hash_bucket_size 128;## Start: Timeouts ##    client_body_timeout   10;    client_header_timeout 10;    keepalive_timeout     80;    send_timeout          10;    keepalive_requests    10;## End: Timeouts ##    #gzip  on;    server {#這個很關鍵~~它是nginx監聽的連接埠哦~~        listen       8080;        server_name  localhost;        #charset koi8-r;        #access_log  logs/host.access.log  main;# For Naxsi remove the single # line for learn mode, or the ## lines for full WAF mode        location / {            #include    /nginx/conf/mysite.rules; # see also http block naxsi include line            ##SecRulesEnabled;          ##DeniedUrl "/RequestDenied";          ##CheckRule "$SQL >= 8" BLOCK;          ##CheckRule "$RFI >= 8" BLOCK;          ##CheckRule "$TRAVERSAL >= 4" BLOCK;          ##CheckRule "$XSS >= 8" BLOCK;              proxy_pass         http://localhost;            root   html;            index  index.html index.htm;        }# For Naxsi remove the ## lines for full WAF mode, redirect location block used by naxsi        ##location /RequestDenied {        ##    return 412;        ##}## Lua examples !#         location /robots.txt {#           rewrite_by_lua '#             if ngx.var.http_host ~= "localhost" then#               return ngx.exec("/robots_disallow.txt");#             end#           ';#         }        #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; # single backend process        #    fastcgi_pass   myLoadBalancer; # or multiple, see example above        #    fastcgi_index  index.php;        #    fastcgi_param  SCRIPT_FILENAME  $document_root$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 spdy;    #    server_name  localhost;    #    ssl                  on;    #    ssl_certificate      cert.pem;    #    ssl_certificate_key  cert.key;    #    ssl_session_timeout  5m;    #    ssl_prefer_server_ciphers On;    #    ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;    #    ssl_ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!eNULL:!MD5:!DSS;    #    location / {    #        root   html;    #        index  index.html index.htm;    #    }    #}}


Tomcat的配置就比較簡單了就是再複製一個改三處連接埠就可以了。具體自己百度了。

配置完畢運行nginx.exe和tomcat就可以驗證配置情況了。

nginx啟動控制我採用了網上一哥們的指令碼,地址如下:

http://feitianbenyue.iteye.com/blog/1989868






Windows下用Nginx+Tomcat配置叢集負載平衡

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.