nginx+tomcat配置集羣

  1. 下載nginx。下載穩定版,下載地址
  2. 解壓,修改conf裏的nginx.conf

#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 {
    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  127.0.0.1 {  #服務器集羣名字   
        server    127.0.0.1:18080  weight=2;#服務器配置   weight是權重的意思,權重越大,分配的概率越大。  
        server    192.168.1.137:8080  weight=2;  
        server    192.168.1.112:8080 weight=2;
    }    

    server {
        listen       90;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm index.jsp;
            proxy_pass http://127.0.0.1;
        }

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

}

upstream裏的server配置的是3個服務器地址,weigth是權重,127.0.0.1是對外IP,listen 90是端口,location裏的prox_pass 是依然是對外IP。
3. 啓動和關閉

啓動nginx: cmd進入你們的nginx目錄。start nginx.

關閉nginx: nginx -s stop. 不會有運行頁面 一閃而過 在任務管理器可以看到

tomcat的啓動和關閉就按照正常流程,對應的ip+端口正確就行。驗證的話可以把放在不同的tomcat裏的主頁面做一點略微區分,看下是不是配置成功。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章