Tomcat 集羣是當單臺服務器達到性能瓶頸,經過橫向擴展的方式提升總體系統性能的有效手段。Nginx 是一個高性能的 HTTP 和反向代理 web 服務器,能夠經過簡單的配置實現 Tomcat 集羣的負載均衡。css
本文使用的 Tomcat 是 8.5.35 版本,Nginx 是 1.14.2 版本。接下來看下配置的過程以及可能會遇到的問題,首發於微信公衆號「頓悟源碼」。html
對於 Web 應用來講,集羣最大的問題就是 Session 信息的共享,通常有如下解決方法:nginx
在配置 Nginx 的過程當中,可能會遇到如下問題:web
taskkill /fi "imagename eq nginx.exe" /f
在配置 Tomcat 集羣的過程當中,須要注意的問題:數據庫
Nginx 使用的是默認配置,添加和修改的核心配置以下:apache
http { ... #gzip on; #設置負載均衡的服務器列表和權重 upstream tomcat-ha { #ip_hash; server 172.31.1.41:8080 weight=1; server 172.31.1.42:8080 weight=1; } server { listen 8000; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; #轉發請求 proxy_pass http://tomcat-ha; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } ... } }
啓用集羣配置,在 <Engine> 元素中添加如下配置:windows
<!-- channelSendOptions=6 同步複製 --> <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster" channelSendOptions="6"> <!-- 集羣 Session 管理器 --> <Manager className="org.apache.catalina.ha.session.BackupManager" expireSessionsOnShutdown="false" notifyListenersOnReplication="true" mapSendOptions="6"/> <!-- <Manager className="org.apache.catalina.ha.session.DeltaManager" expireSessionsOnShutdown="false" notifyListenersOnReplication="true"/> --> <!-- 集羣內部通訊配置 --> <Channel className="org.apache.catalina.tribes.group.GroupChannel"> <Membership className="org.apache.catalina.tribes.membership.McastService" address="228.0.0.4" port="45564" frequency="500" dropTime="3000"/> <Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver" address="192.168.10.2" port="5000" selectorTimeout="100" maxThreads="6"/> <Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter"> <Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender"/> </Sender> <Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector"/> <Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatchInterceptor"/> <Interceptor className="org.apache.catalina.tribes.group.interceptors.ThroughputInterceptor"/> </Channel> <!-- 此 vavle 攔截請求,並將 Session 信息發給內部節點 --> <Valve className="org.apache.catalina.ha.tcp.ReplicationValve" filter=".*\.gif|.*\.js|.*\.jpeg|.*\.jpg|.*\.png|.*\.htm|.*\.html|.*\.css|.*\.txt"/> <ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener"/> </Cluster>
簡單描述下工做原理:瀏覽器
修改 tomcat-benchmark 部署描述符文件中的 context-param 爲 "I'm Tomcat 1/2" 用於區分兩個 Tomcat,啓動 Nginx 和 Tomcat,在瀏覽器訪問 172.31.1.42:8080 能夠看到請求在兩個服務器間切換:緩存
爲了方便理解,這裏先把 Nginx 的負載均衡策略設置成 ip_hash:tomcat
整個過程以下:
動圖正好與上述描述的相反,能夠看到 Session 信息從 Tomcat2 複製到了 Tomcat1 中。
搜索微信號「頓悟源碼」,回覆「Tomcat」後,可獲取本文測試使用的工程以及 Nginx 和 Tomcat 的配置文件。