大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
小编给大家分享一下TOMCAT+IIS如何配置,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
创新互联主营荣成网站建设的网络公司,主营网站建设方案,成都app开发,荣成h5微信小程序搭建,荣成网站营销推广欢迎荣成等地区企业咨询
一.说明:
配置如下: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
#
# $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=
以上是“TOMCAT+IIS如何配置”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!