页面的动静分离

动静分离:

访问静态和动态页面分开

实现动态和静态页面负载均衡

实验1:

准备三台虚拟机:

1台nginx代理服务器:

192.168.120.30

2台tomcat:

tomcat1:192.168.120.20

tomcat2:192.168.120.50

同时关闭防火墙和安全机制

进入代理服务器

vim /usr/local/nginx/conf/nginx.conf

upstream tomcat {

        server 20.0.0.25:8080 weight=1;

        server 20.0.0.26:8080 weight=2;

}

location ~* \.jsp$ {

proxy_pass http://tomcat;

proxy_set_header HOST $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

}

nginx -t

#检测一下

systemctl restart nginx

页面的动静分离_第1张图片

页面的动静分离_第2张图片

vim /usr/local/nginx/html/index.html

页面的动静分离_第3张图片

配置动态页面

进入tomcat1和tomcat2

vim /usr/local/tomcat/conf/server.xml

148行删除

添加

mkdir /usr/local/tomcat/webapps/test

vim /usr/local/tomcat/webapps/test/index.jsp

tomcat1:

页面的动静分离_第4张图片

tomcat2:

页面的动静分离_第5张图片

./shutdown.sh 关闭

./startup.sh   开启

页面的动静分离_第6张图片

实验2:

页面的动静分离_第7张图片

四层+七层+动静分离

192.168.120.30nginx1代理服务器

192.168.120.40 nginx七层代理

192.168.120.60 nginx2七层代理

192.168.120.20 tomcat1 动态网页

192.168.120.50 tomcat2 动态网页

进入代理服务器

 vim /usr/local/nginx/conf/nginx.conf

页面的动静分离_第8张图片

页面的动静分离_第9张图片

systemctl restart nginx

vim /usr/local/nginx/html/index.html

Nginx1

vim /usr/local/nginx/conf/nginx.conf

页面的动静分离_第10张图片

 vim /usr/local/nginx/html/index.html

页面的动静分离_第11张图片

   

Nginx2

vim /usr/local/nginx/conf/nginx.conf

页面的动静分离_第12张图片

vim /usr/local/nginx/html/index.html

页面的动静分离_第13张图片

Tomcat1

vim /usr/local/tomcat/conf/server.xml

148行删除

mkdir /usr/local/tomcat/webapps/test

vim /usr/local/tomcat/webapps/test/index.jsp

页面的动静分离_第14张图片

cd /usr/local/tomcat/bin

./startup.sh

tomcat2

vim /usr/local/tomcat/conf/server.xml

148行删除

mkdir /usr/local/tomcat/webapps/test

vim /usr/local/tomcat/webapps/test/index.jsp

页面的动静分离_第15张图片

cd /usr/local/tomcat/bin

./startup.sh

页面的动静分离_第16张图片

页面的动静分离_第17张图片

页面的动静分离_第18张图片

你可能感兴趣的:(服务器,运维)