真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

奎屯網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、APP開(kāi)發(fā)、響應(yīng)式網(wǎng)站等網(wǎng)站項(xiàng)目制作,到程序開(kāi)發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)公司2013年開(kāi)創(chuàng)至今到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)公司。

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è)的端口號(hào),使得兩個(gè)tomcat啟動(dòng)時(shí)不會(huì)端口沖突,一個(gè)是本身的8080端口,一個(gè)是改成了9080端口。配好以后,打開(kāi)cmd命令窗口,我的tomcat一個(gè)放在d:\software\apache-tomcat-8.5.24目錄下,按照如下命令即可啟動(dòng),啟動(dòng)成功會(huì)彈出另一個(gè)窗口,顯示如下:

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

打開(kāi)瀏覽器,輸入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)前,必須要對(duì)nginx進(jìn)行一下配置才可實(shí)現(xiàn)負(fù)載均衡的功能,打開(kāi)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的訪問(wèn)地址,weight表示分給該服務(wù)器的請(qǐng)求比重,兩個(gè)都是1,則按照1:1來(lái)分配,

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

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

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


分享名稱:nginx+tomcat怎么實(shí)現(xiàn)Windows系統(tǒng)下的負(fù)載均衡
URL標(biāo)題:http://weahome.cn/article/ghcojd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部