小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

Apache Httpd 與 Tomcat的集成

 duduwolf 2006-05-23

在借鑒了大量的文章后,搗鼓這套配置也用了差不多2個(gè)整晚上;現(xiàn)在基本摸索出了套路;按下面的程序辦肯定沒有問題
版本:

apache_2.0.49-win32-x86-no_ssl.msi

jakarta-tomcat-connectors-jk2.0.4-win32-apache2.0.49.zip

jakarta-tomcat-5.0.28.exe

JDK1.4.2_10

程序:

安裝 JDK

安裝 Tomcat http://localhost:8080/ 可訪問

安裝 Httpd  http://localhost 可訪問

解壓縮 connectors

聲明 $httpd apache httpd 的安裝目錄,

D:\programfiles\javas\apache\Apache2

$tomcat Tomcat 的安裝目錄,

D:\programfiles\javas\Tomcat5028

 

集成

1 拷貝 connectors 解壓縮獲得的 modules\mod_jk2.so $httpd\modules

2 拷貝 connectors 解壓縮獲得的 conf \ workers2.properties.sample $httpd\conf

并改名為 workers2.properties

3 修改 $httpd\conf\httpd.conf 文件

主要修改的位置:

3.1

#

# DocumentRoot: The directory out of which you will serve your

# documents. By default, all requests are taken from this directory, but

# symbolic links and aliases may be used to point to other locations.

#

# DocumentRoot "D:/programfiles/javas/apache/Apache2/htdocs"

DocumentRoot "$Tomcat/webapps/"

3.2

#

# This should be changed to whatever you set DocumentRoot to.

#

<Directory "$Tomcat/webapps/">

3.3

# Where to find the workers2.properties file

<IfModule mod_jk2.c>

  JkSet config.file $Httpd/conf/workers2.properties

</IfModule>

3.4

<VirtualHost *:80>

 

ServerName localhost

 

ServerAlias domain.com *.domain.com

 

DocumentRoot $Tomcat/webapps/

 

    <Location "/*.jsp">

 

        JkUriSet worker ajp13:localhost:8009

 

    </Location>

 

</VirtualHost>

3.5

# Example:

# LoadModule foo_module modules/mod_foo.so

#

LoadModule jk2_module modules/mod_jk2.so

 

4 修改 $httpd\conf\ workers2.properties 文件

改后內(nèi)容大概如下:

#  Set  a  Logger

[logger.apache2]

file=$httpd/error/error.log

level=INFO

debug=1

 

#  config  settings

[config]

file=$httpd/conf/workers2.properties

level=INFO

debug=1

 

#  Shared  Memory  file  settings

[shm]

info=Scoreboard. Requried for reconfiguration and status with multiprocess servers.

file=$httpd/logs/jk2.shm

size=1048576

 

# Defines a load balancer named lb. Use even if you only have one machine.

[lb:lb]

# Example socket channel, override port and host.

[channel.socket:localhost:8009]

port=8009

host=127.0.0.1

 

# define the worker

[ajp13:localhost:8009]

channel=channel.socket:localhost:8009

group=lb

 

# Map the Tomcat examples webapp to the Web server uri space

[uri:/*.jsp]

worker=ajp13:localhost:8009

 

5 修改 $Tomcat\conf\ jk2.properties 文件

 

## THIS FILE MAY BE OVERRIDEN AT RUNTIME. MAKE SURE TOMCAT IS STOPED

## WHEN YOU EDIT THE FILE.

 

## COMMENTS WILL BE _LOST_

 

## DOCUMENTATION OF THE FORMAT IN JkMain javadoc.

 

# Set the desired handler list

# handler.list=apr,request,channelJni

#

# Override the default port for the socketChannel

 channelSocket.port=8009

# Default:

# channelUnix.file=${jkHome}/work/jk2.socket

# Just to check if the the config  is working

 shm.file=D:/programfiles/javas/apache/Apache2/logs/jk2.shm

 

# In order to enable jni use any channelJni directive

# channelJni.disabled = 0

# And one of the following directives:

 

 apr.jniModeSo=D:/programfiles/javas/apache/Apache2/modules/mod_jk2.so

 

# If set to inprocess the mod_jk2 will Register natives itself

# This will enable the starting of the Tomcat from mod_jk2

# apr.jniModeSo=inprocess

 

 

大功告成。只要你把要發(fā)布的東西放到 $Tomcat/webapps 下就可以正常訪問了

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多