まず、2 つの Tomcat をインストールします。同じものを 2 つにコピーすることも、2 つの異なるバージョンの Tomcat をダウンロードすることもできます。私は 2 つの異なるバージョンをダウンロードしました。
(これはバージョン 8.0 ですが、特に古くない 2 つのバージョンを見つけてください)。
次に、2 つの Tomcat を起動します。開始する前に、2 つの Tomcat の起動時にポートの競合が発生しないように、そのうちの 1 つのポート番号を変更します。1 つは独自の 8080 ポートで、もう 1 つはポート番号です。ポート 9080 に変更されます。設定後、cmd コマンド ウィンドウを開きます。Tomcat は d:\software\apache-tomcat-8.5.24 ディレクトリにあります。次のコマンドに従って開始します。起動が成功すると、次のように別のウィンドウが表示されます。
ブラウザを開いて http://localhost:9080/ と入力すると、次のインターフェイスが表示され、Tomcat が正常に起動します。もう一方についても同じ手順を実行するだけです。
図 1: tomcat8 図 2: tomcat7
その後、nginx をインストールします。nginx の安定版をインストールしました (ダウンロード アドレス:)。 http://nginx.org/download/nginx-1.12.2.zip を解凍して使用します
開始する前に、nginx を設定する必要があります。負荷分散機能は次のとおりです。 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;
# 以下の 4 行が新たに追加され、2 つの IP は 2 つの Tomcat のアクセス アドレスです。 Weight は、サーバーに割り当てられるリクエストの割合を表します。両方が 1 の場合、リクエストは 1:1 に従って分散されます。
#upstream netitcast.com{ server 127.0.0.1:8080 weight=1; server 127.0.0.1:9080 weight=2; } server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main;
#次の 2 行は、http://netitcast.com と一貫性を保つために、上記の追加
location / { proxy_pass http://netitcast.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; # } #} }
または、cmd ウィンドウを開いて上記のディレクトリに入り、コマンドを実行します: start nginx。正常に起動します。その後、URL を入力します: http://localhost/index.jsp,アクセスを続けると、上に示した図 1 と図 2 が対話的に表示されることがわかります。上記の構成ウェイトは 1:2 の割合で割り当てられているため、ポート 9080 の割合が大きくなり、図 1 (9080 ポート) にアクセスする確率が相対的に高く、図 2 (8080 ポート) にアクセスする確率が相対的に高くなります。高い、小さい、確率は 3 分の 1 と 3 分の 1 です。
以上がnginx + tomcat が Windows システムで負荷分散を実現する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。