Well, I have been frustrated with this combination for
a few days, so I took one step back and looked at my
old Linux Apache 1.3.x, Tomcat 4.0.1, and mod_jk
configurations.

One of the notes I had to myself in the httpd.conf
file was about the order of mod_perl and mod_jk.  As
noted in the Apache 1.3.x documentation, the order of
the LoadModule statements is important.  I found out
that mod_jk had to be loaded before mod_perl so that
both will work.

I'm using the following environment:

Apache 2.0.43
Tomcat 4.1.12
mod_perl/1.99_08-dev
mod_jk2/2.0.0

The order of the LoadModule statements is important.
This works:

#
# Adding mod_jk2
#
LoadModule jk2_module modules/mod_jk2.dll
#
# Adding mod_perl
#
LoadModule perl_module modules/mod_perl.so
PerlRequire "C:/Apache2/conf/extra.pl"

The following FAILS to load mod_jk2:

#
# Adding mod_perl
#
LoadModule perl_module modules/mod_perl.so
PerlRequire "C:/Apache2/conf/extra.pl"
#
# Adding mod_jk2
#
LoadModule jk2_module modules/mod_jk2.dll

Ah well, at least now I can go about getting
everything else to work.

/mde/

just my two cents . . . .

__________________________________________________
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/

--
To unsubscribe, e-mail:   <mailto:tomcat-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>

Reply via email to