您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么用服務器的負載均衡nginx+tomcat實現動靜分離”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“怎么用服務器的負載均衡nginx+tomcat實現動靜分離”文章能幫助大家解決問題。
主機信息
架構圖
兩臺tomcat服務器上準備jdk和tomcat
jdk下載
tomcat下載
mkdir /tools cd /tools ls apache-tomcat-8.5.70.tar.gz jdk-8u181-linux-x64.tar.gz
安裝jdk
mkdir -p /app/java tar xf jdk-8u181-linux-x64.tar.gz -C /app/ ln -s /app/jdk1.8.0_181/ /app/jdk vim /etc/profile export JAVA_HOME=/app/jdk export CLASSPATH=.:$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/dt.jar export PATH=$PATH:$JAVA_HOME/bin source /etc/profile java -version java version "1.8.0_181" Java(TM) SE Runtime Environment (build 1.8.0_181-b13) Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode)
部署tomcat
tar xf apache-tomcat-8.5.70.tar.gz -C /app ln -s /app/apache-tomcat-8.5.70/ /app/tomcat
啟動tomcat并測試,tomcat默認啟動8080端口
/app/tomcat/bin/startup.sh ss -anpt | grep 8080 LISTEN 0 100 [::]:8080 [::]:* users:(("java",pid=2375,fd=52))
看到上面這個頁面說明部署成功
創建tomcat01站點主頁
rm -rf /app/tomcat/webapps/ROOT/* cat /app/tomcat/webapps/ROOT/index.jsp <%@ page language="java" import="java.util.*” pageEncoding="UTF-8"%> <html> <head> <title>tomcat01</title> </head> <body> <% out.println("192.168.10.4,tomcat01");%> <img src="3333.jpg" /> </body> </html>
創建womcat02站點主頁
rm -rf /app/tomcat/webapps/ROOT/* cat /app/tomcat/webapps/ROOT/index.jsp <%@ page language="java" import="java.util.*“ pageEncoding="UTF-8"%> <html> <head> <title>tomcat02</title> </head> <body> <% out.println("192.168.10.5,tomcat02");%> <img src="3333.jpg" /> </body> </html>
兩臺tomcat服務器重啟服務
/app/tomcat/bin/shutdown.sh /app/tomcat/bin/startup.sh
安裝nginx依賴
yum -y install gcc gcc-c++ autoconf pcre-devel make automake httpd-tools enopssl-devel
配置nginx軟件源
cat /etc/yum.repos.d/nginx.repo [nginx-stable] name=nginx stable repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=1 enabled=1 gpgkey=https://nginx.org/keys/nginx_signing.key module_hotfixes=true
安裝nginx服務并啟動
yum clean all yum makecache yum -y install nginx systemctl enable --now nginx
yum安裝的nginx已啟用配置文件分離功能,我們使用默認的配置文件
cat /etc/nginx/nginx.conf include /etc/nginx/conf.d/*.conf; # 修改默認配置文件 vim /etc/nginx/conf.d/default.conf server { listen 80; server_name 192.168.10.3;
創建站點首頁
cd /usr/share/nginx/html/ # 準備一張圖片 ls 3333.jpg 50x.html index.html # 配置站點首頁 vim index.html <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <img src="3333.jpg" /> </body> </html>
重啟nginx服務
systemctl reload nginx
吶,圖片
安裝步驟與nginx01前三步相同
創建負載均衡配置文件
vim /etc/nginx/conf.d/proxy.conf upstream tomcat { server 192.168.10.4:8080; server 192.168.10.5:8080; } upstream static { server 192.168.10.3:80; } server { listen 80; server_name 192.168.10.2; location / { proxy_pass http://tomcat; } location ~* .*\.(png|gif|jpg)$ { proxy_pass http://static; } }
重啟nginx服務
nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful systemctl reload nginx
原理為默認會訪問tomcat后端服務器,但當網頁中有靜態圖片時會在static后端中訪問
訪問測試:達到一個負載均衡且動靜分離的效果
關于“怎么用服務器的負載均衡nginx+tomcat實現動靜分離”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。