Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7460967
  • 博文数量: 1760
  • 博客积分: 18684
  • 博客等级: 上将
  • 技术积分: 16267
  • 用 户 组: 普通用户
  • 注册时间: 2010-06-02 10:28
个人简介

啥也没写

文章分类

全部博文(1760)

文章存档

2024年(6)

2023年(44)

2022年(39)

2021年(46)

2020年(43)

2019年(27)

2018年(44)

2017年(50)

2016年(47)

2015年(15)

2014年(21)

2013年(43)

2012年(143)

2011年(228)

2010年(263)

2009年(384)

2008年(246)

2007年(30)

2006年(38)

2005年(2)

2004年(1)

分类: LINUX

2010-08-19 12:48:10

一,tomcat Host的属性autoDeploy 为true自动部署的情况

注:unpackWARs="true"

•Deployment of .WAR files copied into the Host appBase.
•复制到server.xml 的 •Deployment of exploded web applications which are copied into the Host appBase.
•复制到The Host appBase ,解压后的 webapp
•Re-deployment of a web application which has already been deployed from a .WAR when the new .WAR is provided. In this case the exploded web application is removed, and the .WAR is expanded again. Note that the explosion will not occur if the Host is configured so that .WARs are not exploded with a unpackWARs attribute set to "false", in which case the web application will be simply redeployed as a compressed archive.
•重新部署*.war有更新的文件,旧的解压文件被删除,新的*.war文件重新解压部署的webapp。注意:如果 Host的unpackWARs属性设置为false将不被解压,只是作为压缩文档简单部署而已
•Re-deployment of a web application if the /WEB-INF/web.xml file (or any other resource defined as a WatchedResource) is updated
•重新部署/WEB-INF/web.xml有更新(或者其他被作为监视的资源被修改的情况) web app.
•Re-deployment of a web application if the Context Descriptor file from which the web application has been deployed is updated.
•重新部署$CATALINA_BASE/conf/[engineName]/[Hostname]/directory.xml有更新的webapp
•Re-deployment of a web application if a Context Descriptor file (with a filename corresponding to the Context path of the previously deployed web application) is added to the $CATALINA_BASE/conf/[enginename]/[hostname]/ directory.
•重新部署添加到$CATALINA_BASE/conf/[enginename]/[hostname]/ directory.的webapp
•Undeployment of a web application if its document base (docBase) is deleted. Note that on Windows, this assumes that anti-locking features (see Context configuration) are enabled, otherwise it is not possible to delete the resources of a running web application
•卸载Context属性docBase指定目录被删除的web app。注意在windows上,这只是一个假想,因为windows的锁功能,不可能删除一个正在运行的webapp

二,tomcat6多域名绑定

 

In many server environments, Network Administrators have configured more than one network name (in the Domain 

 

Name Service (DNS) server), that resolve to the IP address of the same server. Normally, each such network 

 

name would be configured as a separate Host element in conf/server.xml, each with its own set of web 

 

applications.

 

However, in some circumstances, it is desireable that two or more network names should resolve to the same 

 

virtual host, running the same set of applications. A common use case for this scenario is a corporate web 

 

site, where it is desireable that users be able to utilize either or company.com to access 

 

exactly the same content and applications.

 

This is accomplished by utilizing one or more Alias elements nested inside your Host element. For example:

 

 

 

  ...

  mycompany.com

  ...

 

 

 

 

In order for this strategy to be effective, all of the network names involved must be registered in your DNS 

 

server to resolve to the same computer that is running this in、

三,设置允许和禁用ip,domain

 

You can ask Catalina to check the IP address, or host name, on every incoming request directed to the surrounding , , or element. The remote address or name will be checked against a configured list of "accept" and/or "deny" filters, which are defined using the Regular Expression syntax supported by the regular expression library. Requests that come from locations that are not accepted will be rejected with an HTTP "Forbidden" error. Example filter declarations:


  ...
  
  
  ...

阅读(713) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~