需求: 一台nginx伺服器,兩台tomcat伺服器,一台測試機
tomcat版本推薦使用8.5.16。
1,建立tomcat(1)的web站點
[root@localhost ~]# mkdir -p /web/html/
[root@localhost ~]# vim/web/html/index.html
www.tomcat1.com
wq儲存退出
2,建立tomcat(2)的web站點
[root@localhost ~]# mkdir -p /web/html/
[root@localhost ~]# vim/web/html/index.html
www.tomcat2.com
wq儲存退出
tomcat的web站點路徑記得設定3,配置nginx.conf
[root@localhost ~]# vim /usr/local/nginx/conf/nginx.conf
在http 字段加入以下**
upstream tomcat_server
在http{}-server{}-localhost{}中加入
proxy_pass http://tomcat_server;
如圖
4,訪問nginx伺服器位址http://hostlocal
重複重新整理
介面會在兩個網頁切換
www.tomcat1.com
www.tomcat2.com
網頁內容取決於你設定的什麼
nginx tomcat負載均衡
nginx版本為1.9.15 必須關閉selinux,否則做請求 時會失敗報錯 關閉selinux 執行 setenforce 0 這個之後暫時關閉selinux,重啟後selinux還是開啟的,要永遠關閉selinux需修改配置檔案 vi etc selinux config 將selinux設定...
Nginx Tomcat負載均衡
使用nginx做 後台兩台tomcat伺服器做負載均衡,nginx和tomcat安裝在其他文章中都可以找到,這裡不做介紹。1 nginx配置 由於專案使用了websocket,所以需要nginx支援websocket,nginx從1.3版本開始支援websocket,所以對版本有一定要求,配置很簡單...
nginx tomcat負載均衡
安裝jdk 解壓,配置環境變數即可 2.安裝tomcat 安裝兩個tomcat,分別為tomcat1和tomcat2。接下來,修改tomcat埠。需修改三個埠 shutdown 埠 8005 主要負責啟動關閉.ajp埠 8009 主要負責通過ajp均衡 常用於apache和tomcat整合 http...