2014-04-15 11:06:03
来 源
ITJS.CN
Apache
本文介绍安装配置Apache+tomcatJSP运行环境,希望对于初学Apache服务器相关的朋友有帮助,更多Apache安装、配置、报错处理等资源请本站内搜索。
Windows 2000下的Jsp运行环境配置

一、jdk-1_5_0_06-windows-i586-p.exe的安装

从http://java.sun.com下载for windows的jdk-1_5_0_06-windows-i586-p.exe,直接运行安装,

我的安装目录:

F:jspserverj2sdk然后添加环境变量: JAVA_HOME = F:jspserverj2sdk

JRE_HOME = F:jspserverJavajre1.5.0

CLASSPATH = .;F:jspserverj2sdklib;F:jspserverJavajre1.5.0lib

重新启动。cmd进入dos,运行java看有没有反应,如果出现命令的帮助,那么java就安装成功了!

二.apache安装

如果安装了IIS,请先停止IIS,然后进行下面的操作!因为IIS Web服务器默认使用80端口,而Apache的默认端口也是80,所以如果你使用的是Win2000操作系统,而且预装了IIS,为方便请在进行以下操作之前先将IIS服务停掉。

1.运行apache_2.0.49-win32-x86-no_ssl.exe,一路点"确定"和"接受"就行,路径选

F:jspserverApache2(选择安装目录时只要选F:jspserver)。此时apache已经安装成功,且已运行,在IE中输入http://localhost/可以看到apache的主页。安装成功!

2.修改httpd.conf

apache的配置文件是httpd.conf,位于apache根目录的下的conf文件夹下

(1).修改默认网站根目录:

在F:jspserver下建立文件夹www,以此作为网站的根目录DocumentRoot "F:/jspserver/apache"

改为DocumentRoot "F:/jspserver/www"

(2).修改字符设置

apache解析中文网页时会产生乱码,注释掉"AddDefaultCharset ISO-8859-1",然后在"#AddDefaultCharset ISO-8859-1"下面添加如下三行:

  AddDefaultCharset GB2312

  DefaultLanguage GB2312

  AddLanguage zh-cn .cn

(3).修改默认主页

当访问目录时,apache会自动导入的主页,优先级以先后顺序为准,把DirectoryIndex index.html index.html.var改为

DirectoryIndex index.html index.htm index.jsp index.asp default.jsp index.html.var

(4).设置错误页面

这样对于你的网站会更安全些,如果没设置,别人在你的网址后随便输入一个路径,会显示404错误,并且会显示你的服务器版本号,服务器配置一目了然,为了避免这种情况,可以设置错误页面。当出现404错误,即找不到网页时,把访问者导入到一个错误页面找到:

#

# Customizable error responses come in three flavors:

# 1) plain text 2) local redirects 3) external redirects

#

# Some examples:

#ErrorDocument 500 "The server made a boo boo."

#ErrorDocument 402 http://www.example.com/subscription_info.html

#

httpd.conf中的这一部分,#ErrorDocument 404 /missing.html一行修改为

ErrorDocument 404 /error/noFile.htm

其中noFile.htm为F:jspserverwww下一个错误文件,需要你自己建立。当发生404错误时,进入noFile.htm页面,可以提示网页没有找到。这样就不可能看到你的服务器软件信息了。也可以设置其它的错误导向的页面,具体http响应错误编号请查阅相关资料。

重新启动apache,如果没意外,此时已经安装成功,把静态页面放到F:jspserverwwwerror目录下,看能不能成功解析。

随便输入一个:http://localhost/sdagasgdasasg.htm,看是不是导向你设置的404错误,即noFile.htm错误页面.成功了吧!

关于apache中其他参数的意义,我就不说啦,你可以去网上查,其实最好的方法是看httpd.conf中的注释部分,已经说得很清楚啦。好啦,到此apache安装成功,你可以休息一下,听首音乐,开始下一步的安装:)

注:关于错误发生时进入设置页面配置没有成功!

三、apache-tomcat-5.5.16.exe的安装

从http://jakarta.apache.org下载for windows的apache-tomcat-5.5.16.exe直接运行安装,我的安装目录:F:jspservertomcat添加环境变量: CLASSPATH = (在原来的CLASSPATH后添加);F:jspservertomcatcommonlib;F:jspservertomcatlib;F:jspservertomcatsharedlib

Tomcat_HOME = F:jspservertomcat

重新启动

在IE中输入http://localhost:8080就会看到一只大猫了!

四、Tomcat和Apache的整合配置 Tomcat只是一个用来解析*.jsp文件的容器,它不是服务器,其解析静态htm/html文件的能力远远不如apache,

整合后在同一个端口使apache来解析静态网页,而遇到*.jsp网页时,交由tomcat来解析.

第一步:把mod_jk2.so复制到F:jspserverApache2modules文件夹下。

第二步:配置APACHE

打开F:jspserverApache2目录下confhttpd.conf

添加以下语句:

#------------------------------------------

LoadModule jk2_module modules/mod_jk2.so

JkSet config.file "F:jspserverApache2confworkers2.properties"

#---------------------------------------------

注意:以上语句的基本意思是:

loadModule一行:加载mod_jk2.so模块,使之与tomcat通讯

JkSet 是设置中的关健,一般问题出在这儿!

第三步:在httpd同一个目录下建立workers2.properties文件,其内容为:

#---- worker2.properties

[shm]

file=F:/jspserver/Apache2/logs/shm.file

size=1048576

#The socket channel

[channel.socket:localhost:8009]

port=8009

host=127.0.0.1

#define the worker

[ajp13:localhost:8009]

channel=channel.socket:localhost:8009

#uri mapping

[uri:/*.jsp]

[uri:/*.do]

worker=ajp13:localhost:8009

#---- end of workers2.properties

第四步:在tomcat/conf下建立jk2.properties文件,其内容为:

handler.list=apr,request,channelJni

channelSocket.port=8019

shm.file=F:jspserverApache2logsjk2.shm

apr.jniModeSo=F:jspserverApache2modulesmod_jk2.so

第五步:修改tomcat/conf下的server.xml

原文:

<Host name="localhost" appBase="webapps" unpackWARs="true" xmlValidation="false" xmlNamespaceAware="false">

改为:

<Host name="localhost" appBase="F:jspserverwww" unpackWARs="true" xmlValidation="false" xmlNamespaceAware="false">

<Context path="/" docBase="F:jspserverwww" debug="0" reloadable="true"></Context> 

*****************************附Apahce2/conf/httpd.conf中的内容如下**********************

ServerRoot "F:/jspserver/Apache2"

PidFile logs/httpd.pid

Timeout 300

KeepAlive On

MaxKeepAliveRequests 100

KeepAliveTimeout 15

<IfModule mpm_winnt.c>

ThreadsPerChild 250

MaxRequestsPerChild 0

</IfModule> Listen 80

LoadModule access_module modules/mod_access.so

LoadModule actions_module modules/mod_actions.so

LoadModule alias_module modules/mod_alias.so

LoadModule asis_module modules/mod_asis.so

LoadModule auth_module modules/mod_auth.so

#LoadModule auth_anon_module modules/mod_auth_anon.so

#LoadModule auth_dbm_module modules/mod_auth_dbm.so

#LoadModule auth_digest_module modules/mod_auth_digest.so

LoadModule autoindex_module modules/mod_autoindex.so

#LoadModule cern_meta_module modules/mod_cern_meta.so

LoadModule cgi_module modules/mod_cgi.so

#LoadModule dav_module modules/mod_dav.so

#LoadModule dav_fs_module modules/mod_dav_fs.so

LoadModule dir_module modules/mod_dir.so

LoadModule env_module modules/mod_env.so

#LoadModule expires_module modules/mod_expires.so

#LoadModule file_cache_module modules/mod_file_cache.so

#LoadModule headers_module modules/mod_headers.so

LoadModule imap_module modules/mod_imap.so

LoadModule include_module modules/mod_include.so

#LoadModule info_module modules/mod_info.so

LoadModule isapi_module modules/mod_isapi.so

LoadModule log_config_module modules/mod_log_config.so

LoadModule mime_module modules/mod_mime.so

#LoadModule mime_magic_module modules/mod_mime_magic.so

#LoadModule proxy_module modules/mod_proxy.so

#LoadModule proxy_connect_module modules/mod_proxy_connect.so

#LoadModule proxy_http_module modules/mod_proxy_http.so

#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so

LoadModule negotiation_module modules/mod_negotiation.so

#LoadModule rewrite_module modules/mod_rewrite.so

LoadModule setenvif_module modules/mod_setenvif.so

#LoadModule speling_module modules/mod_speling.so

#LoadModule status_module modules/mod_status.so

#LoadModule unique_id_module modules/mod_unique_id.so

LoadModule userdir_module modules/mod_userdir.so

#LoadModule usertrack_module modules/mod_usertrack.so

#LoadModule vhost_alias_module modules/mod_vhost_alias.so

#LoadModule ssl_module modules/mod_ssl.so

#------------------------------------------

LoadModule jk2_module modules/mod_jk2.so

JkSet config.file "F:jspserverApache2confworkers2.properties"

#---------------------------------------------

ServerAdmin [email protected]

ServerName www.threetop.net:80

UseCanonicalName Off

DocumentRoot "F:jspserverwww"

<Directory />

Options FollowSymLinks

AllowOverride None

</Directory>

<Directory "F:/jspserver/Apache2/htdocs">

Options Indexes FollowSymLinks

AllowOverride None

Order allow,deny

Allow from all

</Directory>

UserDir "My Documents/My Website"

DirectoryIndex index.html index.htm index.jsp index.asp default.jsp index.html.var AccessFileName .htaccess

<Files ~ "^.ht">

Order allow,deny

Deny from all

</Files>

TypesConfig conf/mime.types

DefaultType text/plain

<IfModule mod_mime_magic.c>

MIMEMagicFile conf/magic

</IfModule>

HostnameLookups Off

ErrorLog logs/error.log

LogLevel warn

LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined

LogFormat "%h %l %u %t "%r" %>s %b" common

LogFormat "%{Referer}i -> %U" referer

LogFormat "%{User-agent}i" agent

CustomLog logs/access.log common

ServerTokens Full

ServerSignature On

Alias /icons/ "F:/jspserver/Apache2/icons/"

<Directory "F:/jspserver/Apache2/icons">

Options Indexes MultiViews

AllowOverride None

Order allow,deny

Allow from all

</Directory>

AliasMatch ^/manual(?:/(?:de|en|fr|ja|ko|ru))?(/.*)?$ "F:/jspserver/Apache2/manual$1"

<Directory "F:/jspserver/Apache2/manual">

Options Indexes

AllowOverride None

Order allow,deny

Allow from all

<Files *.html>

SetHandler type-map

</Files>

SetEnvIf Request_URI ^/manual/de/ prefer-language=de

SetEnvIf Request_URI ^/manual/en/ prefer-language=en

SetEnvIf Request_URI ^/manual/fr/ prefer-language=fr

SetEnvIf Request_URI ^/manual/ja/ prefer-language=ja

SetEnvIf Request_URI ^/manual/ko/ prefer-language=ko

SetEnvIf Request_URI ^/manual/ru/ prefer-language=ru

RedirectMatch 301 ^/manual(?:/(de|en|fr|ja|ko|ru)){2,}(/.*)?$ /manual/$1$2

</Directory>

ScriptAlias /cgi-bin/ "F:/jspserver/Apache2/cgi-bin/"

<Directory "F:/jspserver/Apache2/cgi-bin">

AllowOverride None

Options None

Order allow,deny

Allow from all

</Directory>

IndexOptions FancyIndexing VersionSort

AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

AddIconByType (TXT,/icons/text.gif) text/*

AddIconByType (IMG,/icons/image2.gif) image/*

AddIconByType (SND,/icons/sound2.gif) audio/*

AddIconByType (VID,/icons/movie.gif) video/*

AddIcon /icons/binary.gif .bin .exe

AddIcon /icons/binhex.gif .hqx

AddIcon /icons/tar.gif .tar

AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv

AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip

AddIcon /icons/a.gif .ps .ai .eps

AddIcon /icons/layout.gif .html .shtml .htm .pdf

AddIcon /icons/text.gif .txt

AddIcon /icons/c.gif .c

AddIcon /icons/p.gif .pl .py

AddIcon /icons/f.gif .for

AddIcon /icons/dvi.gif .dvi

AddIcon /icons/uuencoded.gif .uu

AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl

AddIcon /icons/tex.gif .tex

AddIcon /icons/bomb.gif core

AddIcon /icons/back.gif ..

AddIcon /icons/hand.right.gif README

AddIcon /icons/folder.gif ^^DIRECTORY^^

AddIcon /icons/blank.gif ^^BLANKICON^^

DefaultIcon /icons/unknown.gif

ReadmeName README.html

HeaderName HEADER.html

IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

AddLanguage ca .ca

AddLanguage cs .cz .cs

AddLanguage da .dk

AddLanguage de .de

AddLanguage el .el

AddLanguage en .en

AddLanguage eo .eo

AddLanguage es .es

AddLanguage et .et

AddLanguage fr .fr

AddLanguage he .he

AddLanguage hr .hr

AddLanguage it .it

AddLanguage ja .ja

AddLanguage ko .ko

AddLanguage ltz .ltz

AddLanguage nl .nl

AddLanguage nn .nn

AddLanguage no .no

AddLanguage pl .po

AddLanguage pt .pt

AddLanguage pt-BR .pt-br

AddLanguage ru .ru

AddLanguage sv .sv

AddLanguage zh-CN .zh-cn

AddLanguage zh-TW .zh-tw

ForceLanguagePriority Prefer Fallback

AddDefaultCharset GB2312

DefaultLanguage GB2312

AddLanguage zh-cn .cn

AddCharset ISO-8859-1 .iso8859-1 .latin1

AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen

AddCharset ISO-8859-3 .iso8859-3 .latin3

AddCharset ISO-8859-4 .iso8859-4 .latin4

AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru

AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb

AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk

AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb

AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk

AddCharset ISO-2022-JP .iso2022-jp .jis

AddCharset ISO-2022-KR .iso2022-kr .kis

AddCharset ISO-2022-CN .iso2022-cn .cis

AddCharset Big5 .Big5 .big5

# For russian, more than one charset is used (depends on client, mostly):

AddCharset WINDOWS-1251 .cp-1251 .win-1251

AddCharset CP866 .cp866

AddCharset KOI8-r .koi8-r .koi8-ru

AddCharset KOI8-ru .koi8-uk .ua

AddCharset ISO-10646-UCS-2 .ucs2

AddCharset ISO-10646-UCS-4 .ucs4

AddCharset UTF-8 .utf8

AddCharset GB2312 .gb2312 .gb

AddCharset utf-7 .utf7

AddCharset utf-8 .utf8

AddCharset big5 .big5 .b5

AddCharset EUC-TW .euc-tw

AddCharset EUC-JP .euc-jp

AddCharset EUC-KR .euc-kr

AddCharset shift_jis .sjis

AddType application/x-compress .Z

AddType application/x-gzip .gz .tgz AddHandler type-map var

ErrorDocument 404 /error/noFile.htm

BrowserMatch "Mozilla/2" nokeepalive

BrowserMatch "MSIE 4.0b2;" nokeepalive downgrade-1.0 force-response-1.0

BrowserMatch "RealPlayer 4.0" force-response-1.0

BrowserMatch "Java/1.0" force-response-1.0

BrowserMatch "JDK/1.0" force-response-1.0

BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully

BrowserMatch "^WebDrive" redirect-carefully

BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully

BrowserMatch "^gnome-vfs" redirect-carefully

<IfModule mod_ssl.c>

Include conf/ssl.conf

</IfModule>

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。