博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Tomcat两种部署方式
阅读量:5745 次
发布时间:2019-06-18

本文共 1806 字,大约阅读时间需要 6 分钟。

################################################不部署################################################ 

 1) 修改server.xml中Host元素的属性, 添加或修改: deployXML="false" deployOnStartup="false" autoDeploy="false" 2) 含义: deployXML="false": 不部署conf/catalina/localhost下的xml相应的WEB应用 deployOnStartup="false" :tomcat启动时, 不部署webapps下的所有web应用 autoDeploy="false": 避免tomcat在扫描改动时, 再次把webapps下的web应用给部署进来.

##############################################################################

java源码部署总结:环境:nginx+tomcat部署方式:源码部署1 源码目录 /chroot2/test/schedule 目录下面就是所有源码了2 tomcat 位置: /usr/local/tomcat/apache-tomcat-scheduleweb-test 主要配置文件server.xml 主要注意:的配置3 nginx配置 upstream配置: upstream tomcat_schedule_web_test{ server localhost:8291 weight=10; } server配置: server { listen 80; server_name test.schedule.toys178.com; index index.jsp index.htm index.php; root /chroot2/test; fastcgi_connect_timeout 600; fastcgi_send_timeout 600; fastcgi_read_timeout 600; location /schedule { proxy_pass http://tomcat_schedule_web_test; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|apk|tar.gz)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 12h; } access_log /chroot/wwwlogs/tomcat_schedule_web_test-access.log access; }部署方式:war包部署1 war包目录 /chroot2/test/schedule 目录下面放的是war包,如:ScheduleManage.war2 tomcat 位置: /usr/local/tomcat/apache-tomcat-scheduleweb-test 主要配置文件server.xml 主要注意:的配置

3 nginx配置

  upstream配置:

  upstream tomcat_schedule_web_test{

      server localhost:8291 weight=10;

  }

  server配置:

  server

  {

    listen      80;

    server_name test.schedule.toys178.com;

    index index.jsp index.htm index.html;

    root /chroot2/test;

    location /schedule {   

          proxy_pass http://tomcat_schedule_web_test;

    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|apk|tar.gz)$

    {

          expires      30d;

    }

    location ~ .*\.(js|css)?$

    {

          expires      12h;

    }

    access_log  /chroot/wwwlogs/tomcat_schedule_web_test-access.log  access;

  }

转载地址:http://eoazx.baihongyu.com/

你可能感兴趣的文章
JQuery日记_5.13 Sizzle选择器(六)选择器的效率
查看>>
oracle查看经常使用的系统信息
查看>>
Django_4_视图
查看>>
Linux的netstat命令使用
查看>>
lvm讲解,磁盘故障小案例
查看>>
大快网站:如何选择正确的hadoop版本
查看>>
经过这5大阶段,你离Java程序员就不远了!
查看>>
IntelliJ IDEA 连接数据库详细过程
查看>>
thymeleaf 学习笔记-基础篇
查看>>
PHP-X开发扩展
查看>>
android学习笔记——onSaveInstanceState的使用
查看>>
工作中如何做好技术积累
查看>>
怎么用sysLinux做U盘双PE+DOS??
查看>>
Spring Transactional
查看>>
shell脚本实例
查看>>
我的友情链接
查看>>
Windows Phone 7 隔离存储空间资源管理器
查看>>
Microsoft Excel 2000/2003修复工具
查看>>
apache安装报错undefined reference ssl
查看>>
关于爱情只有一句忠告
查看>>