`

【转】Windows+IIS+TOMCAT配置方法

    博客分类:
  • J2EE
阅读更多
一.说明:
配置如下: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很简单,首先可以查看tomcatinstartup.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_MACHINESOFTWAREApache Software FoundationJakarta Isapi Redirector1.0] 
"extension_uri"="/jakarta/isapi_redirect.dll" 
"log_file"="c:jakarta-tomcatlogsisapi.log" 
"log_level"="debug" 
"worker_file"="c:jakarta-tomcatconfworkers.properties" 
"worker_mount_file"="c:jakarta-tomcatconfuriworkermap.properties" 
---end--- 
注:其中的路径需改成你的tomcat的安装路径。 


2、打开IIS管理器,在"默认WEB站点”中建立一个虚拟目录jakarta,让它的路径指向isapi_redirect.dll所在目录。(在3.1 bin中可能没有这个dll,你可以从3.2的biniis t4i386目录中拷贝一个过来。该虚拟目录应被设置为"可执行”。
3、利用IIS管理器,把isapi_redirect.dll设置为"默认WEB站点”的ISAPI筛选器,名称可以任起。
4、重启IIS,确认刚才添加的ISAPI筛选器前面标了一个绿色向上的箭头然后重启Tomcat(执行tomcatinshutdown.bat可关闭Tomcat) 此时,IIS应该已经可以处理*.jsp文件了。由于Tomcat设置中,默认的Root是 tomcatwebappsROOT,所以你可以在这个目录中放置一个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
#################################
#
# 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 valuesomething 
# 
# 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: omcat 
# 
# wrapper.java_home should point to your Java installation. Normally 
# you should have a bin and lib directories beneath it. 
# 
wrapper.java_home=d:JBuilder35jdk1.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)libxml.jar 
wrapper.class_path=$(wrapper.tomcat_home)libwebserver.jar 
wrapper.class_path=$(wrapper.tomcat_home)libservlet.jar 
wrapper.class_path=$(wrapper.tomcat_home)libjasper.jar 
# 
# This is where Javac is located in JDK1.2.x 
# 
wrapper.class_path=$(wrapper.java_home)lib ools.jar 
# 
# and a tribute to JDK1.1.x 
# 
wrapper.class_path=$(wrapper.java_home)libclasses.zip 
# 
# This is the Java interpreter used for running Tomcat 
# 
wrapper.javabin=$(wrapper.java_home)injava.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)confserver.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的服务,可以 在这里启动或者中止它
分享到:
评论

相关推荐

    windows2003 + IIS6 + TOMCAT6 + J2SE1.5.0

    根据提供的文件信息,本文将详细解析如何在Windows 2003系统环境下配置IIS 6与Tomcat 6,并实现两者之间的交互操作。本文主要针对的是已经安装了IIS 6并希望集成Tomcat 6环境的用户,以便更好地支持Java Web应用程序...

    iis6.0+tomcat6.0整合资源

    《IIS6.0与Tomcat6.0的整合配置详解》 在互联网服务领域,IIS(Internet Information Services)和Tomcat都是重要的服务器软件。IIS是微软提供的一个全面的Web服务器解决方案,而Tomcat则是一个开源的、基于Java的...

    windows_server2003+tomcat+iis6整合

    一、下载一个整合需要的文件isapi...另外,在Tomcat中配置好虚拟主机,方法:(此方法请记住使用!) 在 &lt;Engine&gt; 之间添加: unpackWARs="true" autoDeploy="false" xmlValidation="false" xmlNamespaceAware="false"&gt; ...

    Windows7系统IIS7+Tomcat集成

    Win7 系统 IIS7+Tomcat7 集成 通过 iis 和 tomcat 的集成可以让 tomcat 处理 jsp,iis 处理 asp 和 html 静态页面。 一、 安装 tomcat 我所用的 Tomcat 是最新版的 7.0.27 直接安装版,安装的位置是 D:\Program ...

    使用JK整合win2003+iis6+tomcat,而且首页可以默认jsp页面

    标题中的“使用JK整合win2003+iis6+tomcat,而且首页...总的来说,理解并掌握JK模块的配置和使用对于进行IIS和Tomcat的集成至关重要,这对于那些希望在Windows环境下运行Java Web应用的开发者来说是一份宝贵的资源。

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

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

    IIS7+Tomcat7整合配置

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

    Windows7系统IIS7和Tomcat7的集成

    ### Windows 7 系统下 IIS 7 与 Tomcat 7 的集成配置详解 在探讨如何在Windows 7操作系统中实现IIS 7与Tomcat 7的集成配置之前,我们首先来了解一下这两款软件的基本信息以及它们在集成过程中各自承担的角色。 ###...

    Windows 2008实现iis7 +tomcat6的负载均衡

    本主题将深入探讨如何在Windows Server 2008操作系统上实现IIS7与Tomcat6的负载均衡配置,以提升系统性能和可用性。 首先,IIS(Internet Information Services)是微软提供的一个强大的Web服务器,而Tomcat则是一...

    Windows2003下完美配置整合IIS 6+JDK 1.6+Tomcat 6.0.16(JSP服务器配置)

    在Windows Server 2003操作系统中,配置一个完整的JSP服务器环境,即整合IIS 6、JDK 1.6和Tomcat 6.0.16,是一项技术性较强的任务。这个过程涉及到Web服务器与应用服务器的协同工作,以支持Java Web应用程序的运行。...

    IIS+Tomcat项目部署

    在Tomcat配置完成后,需要部署应用程序到Tomcat服务器上。部署应用程序需要将应用程序文件上传到Tomcat服务器的根目录下,然后在Tomcat管理器中创建新的应用程序池,并将应用程序添加到应用程序池中。 在部署应用...

    IIS5+Tomcat5.0.3整合_配置多站点虚拟主机图解手册(PDF)

    《IIS5+Tomcat5.0.3整合_配置多站点虚拟主机图解手册》是一份详尽的教程,旨在帮助用户理解如何在Windows环境中将Internet Information Services (IIS) 5.0与Apache Tomcat 5.0.3进行整合,并设置多站点虚拟主机。...

    Tomcat5+IIS5服务器架设方法

    1. **Tomcat配置** - 在Tomcat的`conf`目录下,打开`jk2.properties`文件,根据需要配置JK2连接器。 2. **IIS配置** - 打开IIS管理工具,添加一个新的Web服务扩展,扩展名为`JK2 for Tomcat`,并指定`isapi_...

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

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

    Tomcat6.x+IIS6+jk2最新整合

    # 如果tomcat,iis在一台服务器中时,不需要修改配置 # 默认端口8009 [channel.socket:localhost:8009] port=8009 host=localhost # define the worker [ajp13:localhost:8009] channel=channel.socket:localhost:...

    Windows2003下完美配置整合IIS 6+JDK+Tomcat 6

    ### Windows2003下完美配置整合IIS 6+JDK+Tomcat 6 在Windows 2003操作系统环境下,为了实现一个高效稳定的应用服务器架构,我们需要完成IIS 6、JDK和Tomcat 6的整合配置。本文将详细介绍整个配置过程中的关键步骤...

    iis+Tomcat整合 详细步骤+整合文件

    在IT行业中,集成IIS(Internet Information Services)与Tomcat服务器是常见的操作,尤其是在Windows服务器环境下,例如Windows 2003。IIS是微软提供的一个强大的Web服务器,而Tomcat则是Apache软件基金会开发的...

    iis7.5与tomcat7整合

    整合环境为Windows Server 2008、JDK 1.6.0、IIS 7.5和Tomcat 7.0。虽然描述中提到了IIS 7.0和Tomcat 6.0,但标题中是7.5和7,所以我们将假设是IIS 7.5和Tomcat 7.0。在这个环境中,IIS和Tomcat的默认端口分别是80和...

    win2003下iis6+tomcat6整合包

    在IT行业中,Windows Server 2003操作系统上的IIS6与Tomcat6的整合是一项常见的任务,尤其对于那些需要同时支持静态网页和Java应用程序的Web服务器环境来说。本知识点将详细阐述如何在win2003下进行iis6与tomcat6的...

Global site tag (gtag.js) - Google Analytics