nginx+tomcat負載均衡配置 火推
具體如何去配置負載,web伺服器以Tomcat為例。
負載均衡的目的是為了解決單個節點壓力過大,造成Web服務響應過慢,嚴重的情況下導致服務癱瘓,無法正常提供服務。
我們通常稱對某一臺機器的訪問量稱為負載量,如何將一個使用者的請求,合理的分配到一臺能快速響應使用者請求的伺服器上,我們就需要用到一些負載策略。也就體現出了文章主題的用意了:負載均衡,將使用者的所有HTTP請求均衡的分配到每一臺機器上,充分發揮所有機器的效能,提高服務的質量和使用者體驗。負載均衡可以通過負載均衡網路硬體裝置和Web伺服器軟體來實現,前者裝置成本較高,小公司通常負擔不起,所以後者一般是我們的首選。實現負載均衡常用的Web伺服器軟體有Nginx、HAProxy、LVS、Apache,本文主要介紹Nginx的負載均衡策略。
下載nginx、tomcat和安裝就不過多介紹了,某度有很多。
準備:
nginx-1.13.0
tomcat-8081
tomcat-8082
jdk7
第一步:Tomcat-8081配置修改
修改tomcat的檔案:server.xml(..\apache-tomcat-8081\conf)
將埠修改三處為:
1:<Server port="8005"...>
2:<Connector port="8081" .../>
3: <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
第二步:Tomcat-8082配置修改
修改tomcat的檔案:server.xml(..\apache-tomcat-8082\conf)
將埠修改三處為:
1:<Server port="8006"...>
2:<Connector port="8082" .../>
3: <Connector port="8010" protocol="AJP/1.3" redirectPort="8443" />
第三步:nginx配置修改
修改nginx的配置檔案:nginx.conf (…\nginx-1.13.0\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 localhost {
server 127.0.0.1:8081;
server 127.0.0.1:8082;
}
server {
listen 80;
server_name localhost;
#charset koi8-r;
access_log logs/host.access.log main;
location / {
proxy_pass http://localhost;
}
#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;
}
}
}
第四步:將web專案部署到tomcat-8081和tomcat-8082中
第五步:啟動tomcat-8081和tomcat-8082
第五步:啟動nginx
最後:訪問http://localhost
相關文章
- Nginx+Tomcat部署負載均衡NginxTomcat負載
- nginx+tomcat實現負載均衡NginxTomcat負載
- Linux環境搭建Nginx+Tomcat負載均衡叢集LinuxNginxTomcat負載
- 使用Redis儲存Nginx+Tomcat負載均衡叢集的SessionRedisNginxTomcat負載Session
- Nginx+Tomcat負載均衡,動靜分離群集部署解析NginxTomcat負載
- nginx配置+uwsgi+負載均衡配置Nginx負載
- Nginx+Tomcat實現負載均衡、動靜分離叢集部署NginxTomcat負載
- 帶你瞭解Nginx+Tomcat負載均衡,動靜分離群集NginxTomcat負載
- Nginx/Httpd負載均衡tomcat配置Nginxhttpd負載Tomcat
- 使用Nginx配置TCP負載均衡NginxTCP負載
- IdentityServer4 負載均衡配置IDEServer負載
- nginx安裝及負載均衡配置Nginx負載
- 做了反向代理和負載均衡的nginx配置檔案簡單示例(nginx.conf) HTTP負載均衡/TCP負載均衡負載NginxHTTPTCP
- LVS負載均衡配置與keepalive服務配置負載
- gRPC負載均衡(自定義負載均衡策略)RPC負載
- gRPC負載均衡(客戶端負載均衡)RPC負載客戶端
- 負載均衡負載
- Ribbon負載均衡策略與自定義配置負載
- docker下nginx反向代理和負載均衡配置DockerNginx負載
- RHEL 7配置HAProxy實現Web負載均衡Web負載
- Nginx 兩臺伺服器配置負載均衡!!!Nginx伺服器負載
- nginx配置web服務|反向代理|負載均衡NginxWeb負載
- 阿里雲負載均衡SSL證書配置(更新)阿里負載
- IP負載均衡負載
- WebSocket負載均衡Web負載
- nginx負載均衡Nginx負載
- NGINX 負載均衡Nginx負載
- 【Nginx】負載均衡Nginx負載
- 負載均衡---ribbon負載
- LoadBalancer負載均衡負載
- LVS 負載均衡負載
- 負載均衡技術(一)———負載均衡技術介紹負載
- 解密負載均衡技術和負載均衡演算法解密負載演算法
- 負載均衡技術(二)———常用負載均衡服務介紹負載
- 【知識分享】四層負載均衡和七層負載均衡負載
- 記一次nginx負載均衡配置情況Nginx負載
- Nginx負載均衡模式Nginx負載模式
- 漫談負載均衡負載
- 負載均衡簡介負載