当前位置: 技术问答>java相关
如何在 windows 2000 下架设 JSP 的运行环境?
来源: 互联网 发布时间:2017-03-25
本文导语: 请教各位大虾朋友,本人想在在 windows 2000 下架设 JSP 的运行环境,保持 IIS 的 WEB 服务器,请各位介绍如何安装和配置最佳,或者介绍一些好文章。 | 一.说明: 配置如下:Win2000...
请教各位大虾朋友,本人想在在 windows 2000 下架设 JSP 的运行环境,保持 IIS 的 WEB 服务器,请各位介绍如何安装和配置最佳,或者介绍一些好文章。
|
一.说明:
配置如下: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很简单,首先可以查看tomcatbinstartup.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-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的biniisnt4i386目录中拷贝一个过来。该虚拟目录应被设置为"可执行”。
3、利用IIS管理器,把isapi_redirect.dll设置为"默认WEB站点”的ISAPI筛选器,名称可以任起。
4、重启IIS,确认刚才添加的ISAPI筛选器前面标了一个绿色向上的箭头然后重启Tomcat(执行tomcatbinshutdown.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: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: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= 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)libtools.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)binjava.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 服务名称可以随便起,例如tomcat或者jakarta等等都行。wrapper.properties的路径应为完整路径(包括wrapper.properties这个文件名)示例:jk_nt_service -I Jakarta d:wrapper.properties 这样在控制面板->服务里面,我们可以看到一个名为Jakarta的服务,可以 在这里启动或者中止它 。
配置如下: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很简单,首先可以查看tomcatbinstartup.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-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的biniisnt4i386目录中拷贝一个过来。该虚拟目录应被设置为"可执行”。
3、利用IIS管理器,把isapi_redirect.dll设置为"默认WEB站点”的ISAPI筛选器,名称可以任起。
4、重启IIS,确认刚才添加的ISAPI筛选器前面标了一个绿色向上的箭头然后重启Tomcat(执行tomcatbinshutdown.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: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: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= 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)libtools.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)binjava.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 服务名称可以随便起,例如tomcat或者jakarta等等都行。wrapper.properties的路径应为完整路径(包括wrapper.properties这个文件名)示例:jk_nt_service -I Jakarta d:wrapper.properties 这样在控制面板->服务里面,我们可以看到一个名为Jakarta的服务,可以 在这里启动或者中止它 。
|
(一) Windows2000环境下Resin开发平台的安装调试:
① 所需主体软件:
J2SDK 1.4.0 Beta2版
Resin 2.0.2版
MySQL 3.23.41版
③ 主体软件下载:
1.j2sdk-1_4_0-beta2-win.exe在 http://java.sun.com/j2se/1.4/处下载。37.2MB.
2.resin-2.0.2.zip版在http://www.caucho.com/download/index.xtp处下载。4.17MB.
3.mysql-3.23.41-win.zip在 http://www.mysql.com/downloads/mysql-3.23.html处下载。11.9MB.
④ 主体软件安装:
1. J2SDK1.4.0安装较简单,只需按提示将其安装为c:jdk1.4目录即可。
2. Resin2.0.2安装较简单,只需用WinZip将其解压到c:下,其会自动产生c:resin-2.0.2目录即可。
3. MySQL3.23.41安装时,先要将其解压到任意目录,在目录中运行setup.exe并按提示将其安装为c:mysql目录即可。
⑤ 主体软件配置:
1.在c:autoexec.bat文件中加入以下各行:
SET PATH=c:tools;c:jdk1.4bin;c:jdk1.4jrebin
//指定java路径
SET CLASSPATH=c:resin-2.0.2lib;c:jdk1.4lib;c:jdk1.4jrelib //指定类路径
SET JAVA_HOME=c:jdk1.4
2.修改c:resin-2.0.2confresin.conf文件内容为:
…
//指定JSP所采用的java编译路径
…
jdbc/test
javax.sql.DataSource
//MySQL JDBC 驱动名
//Mysql数据库路径
//用户名
//口令
…
doc //指定Web根目录
…
//指定httpd端口号
…
//在后加入该行,目的是严禁客户端浏览目录
…
//要编译此目录
…
index.jsp
//指定Httpd文件名
…
1. 运行c:resin-2.0.2binsetup.exe设置与其它Web服务器的关联。
2. 重启Windows
⑥ 主体软件启动:
1. MySQL启动:运行c:mysqlbinwinmysqladmin.exe
2. Resin启动:运行c:resin-2.0.2binhttpd.exe
⑦ 主体软件调试:
1. 在浏览器的地址栏中输入http://127.0.0.1/index.xtp 能看到关于Caucho公司的Resin介绍和说明网页,并能运行其中的各种Demo程序,则Resin的JSP基础平台安装调试成功!
2. 在c:resin-2.0.2doc目录中创建jdbc.jsp文件(可用FrontPage 2002编辑):
JSP-JDBC网页
3. 在浏览器的地址栏中输入http://127.0.0.1/jdbc.jsp 应看不到任何出错信息(页面为空白),Resin与MySQL的联接,是通过以c:resin-2.0.2libjdbc-mysql.jar作为MySQL的JDBC驱动程序,较完整的JSP平台安装调试成功!
(二) Redhat Linux 7.1 (2.4.2-2)环境下Resin应用平台的安装调试:
① Redhat Linux 7.1 (2.4.2-2)采用英语语言方式的完全安装(2.2GB),安装完毕后Apache1.3.19、MySQL3.23.36 等软件已被安装到Linux中,为了能在系统启动时自动装载上述软件,用root用户登录并运行setup:
1. 选择Firewall Configuration(防火墙配置)项,再选择Customize(定制)项,再选中 [*]www(http)项,确定后退出。这样系统就可以开放http功能。
2. 选择Network Configuration(网络配置)项,在IP addres处填入相应的网络地址(如:192.168.100.1),在Netmask处填入相应的掩码(如:255.255.255.0),确定后退出。这样系统就拥有固定的IP地址。
3. 选择System Services(系统服务)项,选中 [*]httpd项和[*]mysqld,确定后退出。这样就可以在下次启动时,系统自动启动httpd和mysqld软件。
② 所需主体软件:
J2SDK 1.4.0 版
Resin 2.0.2版
③ 主体软件下载:
1.j2sdk-1_4_0-beta2-linux-i386-rpm.bin在 http://java.sun.com/ /j2se/1.4/处载。36.6MB.
2.resin-2.0.2.tar.gz在http://www.caucho.com/download/index.xtp处下载。3.12MB.
④ 主体软件安装:
1.JDK1.4.0安装:
#cp j2sdk-1_4_0-beta2-linux-i386-rpm.bin /usr/local把j2sdk1.4.0拷贝到/usr/local目录中。
#cd /usr/local进入该目录。
#./j2sdk-1_4_0-beta2-linux-i386-rpm.bin 自动产生j2sdk-1.4.0.i386.rpm文件。
#rpm –ivh j2sdk-1.4.0.i386.rpm解压此文件,并产生/usr/local/jdk1.4.0目录。
#ln –s jdk1.4.0 jdk 建立jdk快捷方式。
#ln –s jdk/jre 建立jre快捷方式。
2.Resin2.0.2安装:
#cp resin-2.0.2.tar.gz /usr/local 把resin 2.0.2拷贝到/usr/local目录中。
#cd /usr/local进入该目录。
#tar xvzf resin-2.0.2.tar.gz解压此文件,并自动产生/usr/local/resin-2.0.2目录。
#cd resin-2.0.2进入该目录。
#./configure –with-apache=/usr/local/apache
#make
#make install
⑤ 主体软件配置:
1.#vi /etc/rc.d/rc.local编辑系统自启动文件:
加入一行:
/usr/local/resin-2.0.2/bin/httpd.sh start
//表示当系统自启时也启动resin服务
//注:停止 /usr/local/resin-2.0.2/bin/httpd.sh stop
//注:重启 /usr/local/resin-2.0.2/bin/httpd.sh restart
//注:如果系统在重启后出现:
#tcp start at mon aug 27 07:00:10 cst 2001
#tcp start at mon aug 27 07:00:20 cst 2001
#tcp start at mon aug 27 07:00:30 cst 2001
…
解决办法是把/usr/local/resin-2.0.2/bin/httpd.sh start
这一行在rc.local中注释掉。重启后采用手动运行
/usr/local/resin-2.0.2/bin/httpd.sh start即可。
2.#vi /etc/profile编辑系统环境配置文件:
加入以下各行:
PATH=$PATH:/usr/local/jdk/bin:/usr/local/jre/bin
export PATH
JAVA_HOME=/usr/local/jdk
export JAVA_HOME
CLASSPATH=/usr/local/jdk/lib:/usr/local/jre/lib:/usr/local/resin-2.0.2/lib
export CLASSPATH
3.#vi /etc/httpd/conf/httpd.conf编辑Apache的配置文件:
修改以下各行:
Listen 8080
Port 8080
//以上两行是把Apache的默认http端口80让出来,准备给Resin。
4.#vi /usr/local/resin-2.0.2/conf/resin.conf编辑Resin配置文件:
修改以下各行:
…
//指定编译文件javac路径
…
jdbc/test
javax.sql.DataSource
//MySQL JDBC 驱动名
//Mysql数据库路径
//用户名
//口令
…
doc //指定Web根目录
…
//指定httpd端口号
…
//在后加入该行,目的是严禁客户端浏览目录
…
//要编译此目录
…
index.jsp
//指定Httpd文件名
5.#vi /usr/local/resin-2.0.2/bin/httpd.sh编辑Resin的配置文件:
(无变动)
⑥ 主体软件调试:
1.在浏览器的地址栏中输入http://127.0.0.1/index.xtp 能看到关于Caucho公司的Resin介绍和说明网页,并能运行其中的各种Demo程序,则Resin的JSP基础平台安装调试成功!
2.在/usr/local/resin-2.0.2/doc目录中创建jdbc.jsp文件(可用vi先编辑jdbc.txt文件,再用#cp jdbc.txt /usr/local/resin-2.0.2/doc/jdbc.jsp):
JSP-JDBC网页
3.在浏览器的地址栏中输入http://127.0.0.1/jdbc.jsp 应看不到任何出错信息(页面为空白),Resin与MySQL的联接,是通过以/usr/local/resin-2.0.2/lib/jdbc-mysql.jar作为MySQL的JDBC驱动程序,较完整的JSP平台安装调试成功!
① 所需主体软件:
J2SDK 1.4.0 Beta2版
Resin 2.0.2版
MySQL 3.23.41版
③ 主体软件下载:
1.j2sdk-1_4_0-beta2-win.exe在 http://java.sun.com/j2se/1.4/处下载。37.2MB.
2.resin-2.0.2.zip版在http://www.caucho.com/download/index.xtp处下载。4.17MB.
3.mysql-3.23.41-win.zip在 http://www.mysql.com/downloads/mysql-3.23.html处下载。11.9MB.
④ 主体软件安装:
1. J2SDK1.4.0安装较简单,只需按提示将其安装为c:jdk1.4目录即可。
2. Resin2.0.2安装较简单,只需用WinZip将其解压到c:下,其会自动产生c:resin-2.0.2目录即可。
3. MySQL3.23.41安装时,先要将其解压到任意目录,在目录中运行setup.exe并按提示将其安装为c:mysql目录即可。
⑤ 主体软件配置:
1.在c:autoexec.bat文件中加入以下各行:
SET PATH=c:tools;c:jdk1.4bin;c:jdk1.4jrebin
//指定java路径
SET CLASSPATH=c:resin-2.0.2lib;c:jdk1.4lib;c:jdk1.4jrelib //指定类路径
SET JAVA_HOME=c:jdk1.4
2.修改c:resin-2.0.2confresin.conf文件内容为:
…
//指定JSP所采用的java编译路径
…
jdbc/test
javax.sql.DataSource
//MySQL JDBC 驱动名
//Mysql数据库路径
//用户名
//口令
…
doc //指定Web根目录
…
//指定httpd端口号
…
//在后加入该行,目的是严禁客户端浏览目录
…
//要编译此目录
…
index.jsp
//指定Httpd文件名
…
1. 运行c:resin-2.0.2binsetup.exe设置与其它Web服务器的关联。
2. 重启Windows
⑥ 主体软件启动:
1. MySQL启动:运行c:mysqlbinwinmysqladmin.exe
2. Resin启动:运行c:resin-2.0.2binhttpd.exe
⑦ 主体软件调试:
1. 在浏览器的地址栏中输入http://127.0.0.1/index.xtp 能看到关于Caucho公司的Resin介绍和说明网页,并能运行其中的各种Demo程序,则Resin的JSP基础平台安装调试成功!
2. 在c:resin-2.0.2doc目录中创建jdbc.jsp文件(可用FrontPage 2002编辑):
JSP-JDBC网页
3. 在浏览器的地址栏中输入http://127.0.0.1/jdbc.jsp 应看不到任何出错信息(页面为空白),Resin与MySQL的联接,是通过以c:resin-2.0.2libjdbc-mysql.jar作为MySQL的JDBC驱动程序,较完整的JSP平台安装调试成功!
(二) Redhat Linux 7.1 (2.4.2-2)环境下Resin应用平台的安装调试:
① Redhat Linux 7.1 (2.4.2-2)采用英语语言方式的完全安装(2.2GB),安装完毕后Apache1.3.19、MySQL3.23.36 等软件已被安装到Linux中,为了能在系统启动时自动装载上述软件,用root用户登录并运行setup:
1. 选择Firewall Configuration(防火墙配置)项,再选择Customize(定制)项,再选中 [*]www(http)项,确定后退出。这样系统就可以开放http功能。
2. 选择Network Configuration(网络配置)项,在IP addres处填入相应的网络地址(如:192.168.100.1),在Netmask处填入相应的掩码(如:255.255.255.0),确定后退出。这样系统就拥有固定的IP地址。
3. 选择System Services(系统服务)项,选中 [*]httpd项和[*]mysqld,确定后退出。这样就可以在下次启动时,系统自动启动httpd和mysqld软件。
② 所需主体软件:
J2SDK 1.4.0 版
Resin 2.0.2版
③ 主体软件下载:
1.j2sdk-1_4_0-beta2-linux-i386-rpm.bin在 http://java.sun.com/ /j2se/1.4/处载。36.6MB.
2.resin-2.0.2.tar.gz在http://www.caucho.com/download/index.xtp处下载。3.12MB.
④ 主体软件安装:
1.JDK1.4.0安装:
#cp j2sdk-1_4_0-beta2-linux-i386-rpm.bin /usr/local把j2sdk1.4.0拷贝到/usr/local目录中。
#cd /usr/local进入该目录。
#./j2sdk-1_4_0-beta2-linux-i386-rpm.bin 自动产生j2sdk-1.4.0.i386.rpm文件。
#rpm –ivh j2sdk-1.4.0.i386.rpm解压此文件,并产生/usr/local/jdk1.4.0目录。
#ln –s jdk1.4.0 jdk 建立jdk快捷方式。
#ln –s jdk/jre 建立jre快捷方式。
2.Resin2.0.2安装:
#cp resin-2.0.2.tar.gz /usr/local 把resin 2.0.2拷贝到/usr/local目录中。
#cd /usr/local进入该目录。
#tar xvzf resin-2.0.2.tar.gz解压此文件,并自动产生/usr/local/resin-2.0.2目录。
#cd resin-2.0.2进入该目录。
#./configure –with-apache=/usr/local/apache
#make
#make install
⑤ 主体软件配置:
1.#vi /etc/rc.d/rc.local编辑系统自启动文件:
加入一行:
/usr/local/resin-2.0.2/bin/httpd.sh start
//表示当系统自启时也启动resin服务
//注:停止 /usr/local/resin-2.0.2/bin/httpd.sh stop
//注:重启 /usr/local/resin-2.0.2/bin/httpd.sh restart
//注:如果系统在重启后出现:
#tcp start at mon aug 27 07:00:10 cst 2001
#tcp start at mon aug 27 07:00:20 cst 2001
#tcp start at mon aug 27 07:00:30 cst 2001
…
解决办法是把/usr/local/resin-2.0.2/bin/httpd.sh start
这一行在rc.local中注释掉。重启后采用手动运行
/usr/local/resin-2.0.2/bin/httpd.sh start即可。
2.#vi /etc/profile编辑系统环境配置文件:
加入以下各行:
PATH=$PATH:/usr/local/jdk/bin:/usr/local/jre/bin
export PATH
JAVA_HOME=/usr/local/jdk
export JAVA_HOME
CLASSPATH=/usr/local/jdk/lib:/usr/local/jre/lib:/usr/local/resin-2.0.2/lib
export CLASSPATH
3.#vi /etc/httpd/conf/httpd.conf编辑Apache的配置文件:
修改以下各行:
Listen 8080
Port 8080
//以上两行是把Apache的默认http端口80让出来,准备给Resin。
4.#vi /usr/local/resin-2.0.2/conf/resin.conf编辑Resin配置文件:
修改以下各行:
…
//指定编译文件javac路径
…
jdbc/test
javax.sql.DataSource
//MySQL JDBC 驱动名
//Mysql数据库路径
//用户名
//口令
…
doc //指定Web根目录
…
//指定httpd端口号
…
//在后加入该行,目的是严禁客户端浏览目录
…
//要编译此目录
…
index.jsp
//指定Httpd文件名
5.#vi /usr/local/resin-2.0.2/bin/httpd.sh编辑Resin的配置文件:
(无变动)
⑥ 主体软件调试:
1.在浏览器的地址栏中输入http://127.0.0.1/index.xtp 能看到关于Caucho公司的Resin介绍和说明网页,并能运行其中的各种Demo程序,则Resin的JSP基础平台安装调试成功!
2.在/usr/local/resin-2.0.2/doc目录中创建jdbc.jsp文件(可用vi先编辑jdbc.txt文件,再用#cp jdbc.txt /usr/local/resin-2.0.2/doc/jdbc.jsp):
JSP-JDBC网页
3.在浏览器的地址栏中输入http://127.0.0.1/jdbc.jsp 应看不到任何出错信息(页面为空白),Resin与MySQL的联接,是通过以/usr/local/resin-2.0.2/lib/jdbc-mysql.jar作为MySQL的JDBC驱动程序,较完整的JSP平台安装调试成功!
|
搜索以前的贴子,有很多这种问题
|
好像没见过这样配置的,tomcat之类的也不装吗?
|
TOMCAT好
把JSP搁IIS中运行,这是没有任何意义的事
把JSP搁IIS中运行,这是没有任何意义的事
|
我个人觉得resin好,简单明了