apt-get安装tomcat并测试nginx负载均衡

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apt-get安装tomcat并测试nginx负载均衡相关的知识,希望对你有一定的参考价值。

1、tomcat安装

参考我的另一篇文章

ubuntu安装tomcat7


2、多个tomcat的配置

编辑/etc/tomcat7/service.xml,配置字段Service name 、Connect port、defaulthost、Host name、appBase、prefix

下图分别配置端口分别为8080、8081、8082

其中我删除了大部分注释的内容

技术分享图片


技术分享图片


技术分享图片


3、准备测试页面

cd /var/lib/tomcat7 


sudo cp -r webapps webapps8081

sudo cp -r webapps webapps8081


sudo chown tomcat7:tomcat7 webapps8081

sudo chown tomcat7:tomcat7 webapps8082


sudo vi /var/lib/tomcat/webapps/ROOT/index.html

修改字段<h1>It works 8080!</h1>


sudo vi /var/lib/tomcat/webapps8081/ROOT/index.html

修改字段<h1>It works 8081!</h1>


sudo vi /var/lib/tomcat/webapps8082/ROOT/index.html

修改字段<h1>It works 8082!</h1>


启动tomcat

sudo service tomcat7 start


4、浏览器访问测试

如下图所示

技术分享图片


技术分享图片


技术分享图片


5、安装配置nginx

安装

sudo apt-get install nginx


nginx配置

sudo vi /etc/nginx/nginx.conf

在http {}中添加如下图所示内容

技术分享图片


检查配置文件

sudo nginx -t


启动 

sudo nginx 


检查端口

ps -ef | grep nginx 


netstat -an | grep :18080


这里需要注意的是nginx服务端口不要按照默认的80,因为如果按照默认的端口,则无法跳转到tomcat的页面,一直显示的是nginx的默认页面,具体原因还未找到。


6、浏览器访问测试

http://localhost:18080


刷新页面发现页面在变化

技术分享图片


技术分享图片


技术分享图片


参考:

http://blog.51cto.com/purplegrape/932811

https://blog.csdn.net/dylanzr/article/details/52135196


以上是关于apt-get安装tomcat并测试nginx负载均衡的主要内容,如果未能解决你的问题,请参考以下文章

开发人员学Linux:CentOS7编译安装Nginx并搭建Tomcat负载均衡环境

tomcat 多实例部署以及负载均衡配置

nginx配置负载均衡

Nginx的安装配置和tomcat负载均衡

Nginx+tomcat实现负载均衡

Nginx+Tomcat负载均衡群集