溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡

發(fā)布時(shí)間:2022-04-28 13:57:47 來源:億速云 閱讀:184 作者:iii 欄目:大數(shù)據(jù)

本篇內(nèi)容主要講解“nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡”吧!

nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡

首先,安裝兩個(gè)tomcat,可以是同一個(gè)復(fù)制成兩個(gè),也可以下載兩個(gè)不同版本的tomcat,我就是下載了兩個(gè)不同版本的。

(這是8.0版本的,隨便找兩個(gè)不是特別老的版本的就行)。

然后啟動(dòng)兩個(gè)tomcat,在啟動(dòng)前,先更改其中一個(gè)的端口號,使得兩個(gè)tomcat啟動(dòng)時(shí)不會端口沖突,一個(gè)是本身的8080端口,一個(gè)是改成了9080端口。配好以后,打開cmd命令窗口,我的tomcat一個(gè)放在d:\software\apache-tomcat-8.5.24目錄下,按照如下命令即可啟動(dòng),啟動(dòng)成功會彈出另一個(gè)窗口,顯示如下:

nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡

打開瀏覽器,輸入http://localhost:9080/,出現(xiàn)如下界面即tomcat啟動(dòng)成功。另一個(gè)采用同樣的步驟即可。

nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡

圖1:tomcat8     圖2:tomcat7

再之后,安裝一個(gè)nginx,我裝的是穩(wěn)定版的nginx,下載地址:http://nginx.org/download/nginx-1.12.2.zip,解壓即可使用

nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡

在啟動(dòng)前,必須要對nginx進(jìn)行一下配置才可實(shí)現(xiàn)負(fù)載均衡的功能,打開conf文件夾,下面有一個(gè)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;

#以下四行是新添加的,兩個(gè)ip是兩個(gè)tomcat的訪問地址,weight表示分給該服務(wù)器的請求比重,兩個(gè)都是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;

#一下兩行是進(jìn)行修改的,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窗口,進(jìn)入到以上目錄,執(zhí)行命令:start nginx 即啟動(dòng)成功,然后輸入網(wǎng)址:http://localhost/index.jsp,不斷的進(jìn)行訪問,就會發(fā)現(xiàn),上方顯示的圖1和圖2在交互的顯示。因?yàn)橐陨系呐渲脀eight是以1:2的比重來分配的,所以9080端口的比重就大一些,訪問到圖一(9080端口)的幾率就比較大,訪問到圖二(8080端口)的幾率比較小,這個(gè)概率一個(gè)是三分之二,一個(gè)是三分之一。

到此,相信大家對“nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI