`
taody
  • 浏览: 100066 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

JAVA 部署TOMCAT+IIS配置方法

 
阅读更多

本文转载自:http://www.javadt.com/article-30-1.html


JAVA 部署TOMCAT+IIS配置方法

2012-4-12 10:00| 发布者: 低调| 查看: 1| 评论: 0|原作者: admin|编辑 |删除

摘要: 一.说明: 配置如下:Win2000 Server + IIS 5.0(Win2000自带)+ Tomcat 3.1 binary release. 我使用的Tomcat 3.1是编译过的版本,在这个版本里面没有配置IIS和NT Service 的说明,但是在Tocmcat 3.2 source版里 ...

一.说明:   
配置如下:Win2000 Server + IIS 5.0(Win2000自带)+ Tomcat 3.1 binary release.   
我使用的Tomcat 3.1是编译过的版本,在这个版本里面没有配置IIS和NT Service   
的说明,但是在Tocmcat 3.2 source版里面有比较详细的帮助文件。根据这些帮助文件 可以顺利的把Tomcat作为插件插入IIS。   
二.启动tomcat   
安装完tomcat之后(具体安装过程略),要启动Tomcat很简单,首先可以查看tomcat\bin\startup.bat文件,利用控制面板里面的系统->高级->环境变量对话框,新建环境变量TOMCAT_HOME和JAVA_HOME,使它们各自指向TOMCAT和JDK的根目录即可。另外为保险起见,可以在path里面把二者的路径添加进去。然后开启一个DOS窗口执行startup.bat。 启动Tomcat后,会有一个DOS窗口显示启动情况。此时访问http://localhost:8080可以看到Tomcat的一些示例。   
三.配置   
下一步工作就是如何把Tomcat插入IIS,使二者协同工作。主要分以下几个步骤:   
1、在Windows注册表中注册:   
将下面的begin和end之间的Jakarta.reg文件装入机器,我的Tomcat装在c:\\jakarta-tomcat,你可根据自己的环境修改Jakarta.reg文件   
Jakarta.reg:   
---begin---   
Windows Registry Editor Version 5.00   
[HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Jakarta Isapi Redirector\1.0]   
"extension_uri"="/jakarta/isapi_redirect.dll"   
"log_file"="c:\\jakarta-tomcat\\logs\\isapi.log"   
"log_level"="debug"   
"worker_file"="c:\\jakarta-tomcat\\conf\\workers.properties"   
"worker_mount_file"="c:\\jakarta-tomcat\\conf\\uriworkermap.properties"   
---end---   
注:其中的路径需改成你的tomcat的安装路径。   

2、打开IIS管理器,在"默认WEB站点”中建立一个虚拟目录jakarta,让它的路径指向isapi_redirect.dll所在目录。(在3.1 bin中可能没有这个dll,你可以从3.2的bin\iis\nt4\i386目录中拷贝一个过来。该虚拟目录应被设置为"可执行”。   
3、利用IIS管理器,把isapi_redirect.dll设置为"默认WEB站点”的ISAPI筛选器,名称可以任起。   
4、重启IIS,确认刚才添加的ISAPI筛选器前面标了一个绿色向上的箭头然后重启Tomcat(执行tomcat\bin\shutdown.bat可关闭Tomcat) 此时,IIS应该已经可以处理*.jsp文件了。由于Tomcat设置中,默认的Root是 tomcat\webapps\ROOT,所以你可以在这个目录中放置一个jsp文件(例如 index.jsp),然后访问http://localhost/index.jsp,看一下效果。 如果按照上面的方法还是无法使IIS处理jsp文件,可以尝试在IIS管理器->默认WEB站点属性->主目录->配置中添加一个"应用程序映射”,把*.jsp文件映射到isapi_redirect.dll上。   
四.作为NT的服务   
作为NT service的设置比较简单。   
首先从3.2拷贝过来jk_nt_service.exe,然后把下面的内容保存起来,起名   
为wrapper.properties   
#   
# $Header: /home/cvs/jakarta-tomcat/src/etc/wrapper.properties,v 1.1   
#2000/05/03 11:54:49 shachor Exp $   
# $Revision: 1.1 $   
# $Date: 2000/05/03 11:54:49 $   
#   
#   
# jk_service.properties - a bootstrup file for the Tomcat NT service.   
#   
# This file provides jk_nt_service with the needed information to   
# start tomcat at a different process.   
#   
# As a general note, the characters $( and ) are used internally to define   
# macros. Do not use them!!!   
#   
# Whenever you see a set of lines such as:   
# x=value   
# y=$(x)\something   
#   
# the final value for y will be value\something   
#   
# Normaly all you will need to modify is the first two properties, i.e.   
# wrapper.tomcat_home and wrapper.java_home. Most of the configuration   
# is derived from these two.   
#   
#   
# wrapper.tomcat_home should point to the location where you   
# installed tomcat. This is where you have your conf, webapps and lib   
# directories.   
#   
wrapper.tomcat_home=d:\tomcat   
#   
# wrapper.java_home should point to your Java installation. Normally   
# you should have a bin and lib directories beneath it.   
#   
wrapper.java_home=d:\JBuilder35\jdk1.2.2   
#   
#------ ADVANCED MODE ------------------------------------------------   
# Make sure that you read the how-to before making too many changes.   
#---------------------------------------------------------------------   
#   
#   
# Defining where the service is going to put the standard   
# output of Tomcat. This is where System.out.println and   
# System.err.println goes to.   
#   
wrapper.stdout=$(wrapper.tomcat_home)\jvm.stdout   
wrapper.stderr=$(wrapper.tomcat_home)\jvm.stderr   
#   
# Additions to the path. put here directories where you store DLLs for   
# native methods etc.   
#   
wrapper.ld_path=d:\   
wrapper.ld_path=c:\   
#   
# Defining the classpath. All the rows that belongs to the class_path   
# property are concatenated to create the classpath for Tomcat.   
#   
# If you have additional locations that you would like to add to the   
# claspath you should add a new wrapper.class_path=<location> line.   
#   
wrapper.class_path=$(wrapper.tomcat_home)\classes   
wrapper.class_path=$(wrapper.tomcat_home)\lib\xml.jar   
wrapper.class_path=$(wrapper.tomcat_home)\lib\webserver.jar   
wrapper.class_path=$(wrapper.tomcat_home)\lib\servlet.jar   
wrapper.class_path=$(wrapper.tomcat_home)\lib\jasper.jar   
#   
# This is where Javac is located in JDK1.2.x   
#   
wrapper.class_path=$(wrapper.java_home)\lib\tools.jar   
#   
# and a tribute to JDK1.1.x   
#   
wrapper.class_path=$(wrapper.java_home)\lib\classes.zip   
#   
# This is the Java interpreter used for running Tomcat   
#   
wrapper.javabin=$(wrapper.java_home)\bin\java.exe   
#   
# This is Tomcat's startup class (the class that contains Tomcat's   
# starting point.   
#   
wrapper.startup_class=org.apache.tomcat.startup.Tomcat   
#   
# This is the location where tomcat's server.xml configuration file   
# is located.   
#   
wrapper.server_xml=$(wrapper.tomcat_home)\conf\server.xml   
#   
# The NT service uses AJP12 to shutdown Tomcat. The wrapper.shutdown_port   
# tells the service the identity of the port that is used by AJP12.   
#   
wrapper.shutdown_port=8007   
#   
# This is the command line that is used to start Tomcat. You can *add* extra   
# parameters to it but you can not remove anything.   
#   
wrapper.cmd_line=$(wrapper.javabin) -classpath $(wrapper.class_path) $(wrapp   
er.startup_class) -config $(wrapper.server_xml) -home $(wrapper.tomcat_home)   
保存后,只需修改里面的wrapper.tomcat_home和wrapper.java_home使它们各自指向tomcat根目录和JDK根目录即可。 然后运行jk_nt_service -I <服务名称> <wrapper.properties的路径> 服务名称可以随便起,例如tomcat或者jakarta等等都行。wrapper.properties的路径应为完整路径(包括wrapper.properties这个文件名)示例:jk_nt_service -I Jakarta d:\wrapper.properties 这样在控制面板->服务里面,我们可以看到一个名为Jakarta的服务,可以 在这里启动或者中止它 

 

转载请注明:http://www.javadt.com

0
1
分享到:
评论

相关推荐

    Tomcat+IIS整合配置文件

    "Tomcat+IIS整合配置文件"的标题和描述指向了一个特定的场景:将Apache Tomcat(一个流行的Java Servlet容器)与Microsoft IIS(互联网信息服务)集成,以实现更高效的Web服务。这种整合通常用于在同一个服务器上...

    IIS+Tomcat项目部署

    在部署Tomcat应用程序之前,需要安装和配置JDK环境。JDK是Java开发工具包,提供了Java编译器、调试器和其他开发工具。 安装JDK环境需要下载JDK安装包,然后按照安装向导进行安装。安装完成后,需要设置JDK环境变量...

    Tomcat5+IIS5服务器架设方法

    2. **IIS配置** - 打开IIS管理工具,添加一个新的Web服务扩展,扩展名为`JK2 for Tomcat`,并指定`isapi_redirector2.dll`的路径。 - 创建一个新的虚拟目录,指向Tomcat的`webapps`目录,配置其ISAPI筛选器,添加`...

    tomcat5.5+iis6+jkconnetctor简单配置飞扬清风

    标题中的"tomcat5.5+iis6+jkconnetctor简单配置飞扬清风"指的是在Windows环境下,通过Apache Tomcat 5.5版本、IIS 6(Internet Information Services)以及JK Connector来实现Web应用的集成部署。这种配置允许IIS...

    IIS6.0+tomcat6.0+JK整合(8080端口和80端口共用jsp网站)参考.pdf

    ### IIS6.0+Tomcat6.0+JK整合(8080端口和80端口共用jsp网站)的知识点 #### 一、整合环境与目标 本整合的目标是在一个环境中同时利用IIS6.0和Tomcat6.0来部署和运行jsp网站,使得用户可以通过标准HTTP端口80访问...

    tomcat_iis_connector工具

    总的来说,"tomcat_iis_connector"工具是Windows Server环境下实现IIS、Tomcat和Apache服务器高效协作的关键,为用户提供了一种便捷的方式来部署和管理混合Web服务环境,尤其适用于需要处理大量Java应用的企业级解决...

    IIS 整合 tomcat +需要用到的文件

    总的来说,IIS与Tomcat的整合是Web服务器部署中的一个重要环节,尤其是对于那些需要同时支持Java和非Java应用的环境。通过正确配置,可以实现高效率的Web服务,提高系统的稳定性和响应速度。而这个压缩包中的文件和...

    windows2003 + IIS6 + TOMCAT6 + J2SE1.5.0

    根据提供的文件信息,...通过以上步骤,我们可以在Windows 2003环境下成功搭建起IIS 6与Tomcat 6的集成环境,为部署Java Web应用程序提供了便利。在实际操作过程中,还需要根据具体的应用需求进行相应的调整和优化。

    Tomcat IIS HowTo将Tomcat装入IIS全攻略

    然而,在某些场景下,为了充分利用两者的优势,如Tomcat在处理Java应用上的高效与IIS在提供静态内容及部分动态内容上的稳定,将Tomcat集成到IIS中成为一种常见的需求。本文旨在详细介绍如何将Apache Tomcat与...

    IIS7+Tomcat7整合配置

    标题 "IIS7+Tomcat7整合配置" 涉及的是在Windows操作系统上通过IIS7(Internet Information Services 7)与Tomcat7的集成,实现Web应用程序的部署和管理。IIS7是微软发布的一款强大的Web服务器,而Tomcat7是一款开源的...

    windows 2003 iis+tomcat+jk整合

    在IT行业中,Windows Server 2003操作系统与IIS(Internet Information Services)结合Tomcat应用服务器进行整合,是常见的Web服务部署方案。这种整合主要适用于那些需要在Windows环境下运行Java Web应用程序的情况...

    tomcat_iis_connector

    在Web服务器领域,IIS是微软公司推出的一款强大的HTTP服务器,而Tomcat则是Apache软件基金会的Java Servlet和JavaServer Pages(JSP)容器,广泛用于部署Java应用程序。 描述中提到的“请注意版本号和系统位数”是...

    tomcat_iis_connector(你需要的都在这里)

    这个包可能包含了配置和工具,帮助用户在IIS8中设置和管理Tomcat连接器,以便在IIS和Tomcat之间实现负载均衡、session共享或应用程序的透明部署。 描述中提到的"tomcat_iis_connector目录下 修改conf\workers....

    Tomcat集成IIS的配置文件

    在IT领域,特别是在服务器管理和Web应用程序部署中,有时我们需要将Apache Tomcat(一个流行的Java Servlet容器)与Microsoft IIS(Internet Information Services,微软的Web服务器)集成,以实现更灵活的Web服务...

    IIS与Tomcat整合按 (windows 2003)

    将Microsoft的Internet Information Services(IIS)Web服务器与Apache Tomcat应用程序服务器进行集成,以便在一个服务器环境中同时利用IIS的静态资源处理能力和Tomcat的动态内容处理功能,特别是对于运行Java ...

    Tomcat和iis发布Cesium地形数据教程及依赖库.zip

    部署Cesium地形数据的过程与Tomcat类似,但需要使用不同的配置方法。首先,安装IIS并设置一个新的网站,将网站目录指向包含地形数据文件的位置。然后,创建一个包含Cesium引用和地形数据源设置的HTML文件。IIS需要...

Global site tag (gtag.js) - Google Analytics