Here you go...hope there is something amiss in here that's causing it!
TIA, Rick
JK2 configuration and virtualhost of httpd.conf ------------------------------
LoadModule jk2_module modules/mod_jk2.so
<IfModule mod_jk2.c>
JkSet config.file /usr/local/apache2/conf/workers2.properties
</IfModule>
<VirtualHost *>
ServerName www.somesite.com
DocumentRoot /usr/local/www/somesite.com
Options Indexes FollowSymLinks
DirectoryIndex index.html index.jsp
JkSet uri:www.somesite.com/*.jsp.group ajp13:localhost:8009
JkSet uri:www.somesite.com/servlet/*.group ajp13:localhost:8009
</VirtualHost>
workers2.properties --------------------------------------------------------
# Use only for debugging
[logger.apache2]
level=DEBUG
# Shared memory handling. Needs to be set.
[shm]
file=/usr/local/apache2/logs/shm.file
size=1048576
# Example socket channel, override port and host.
[channel.socket:localhost:8009]
port=8009
host=127.0.0.1
tomcatId=localhost:8009
# Define the ajp13 worker
[ajp13:localhost:8009]
channel=channel.socket:localhost:8009
# Define the status worker
[status:status]
info=Status worker for displaying runtime information
# Map the status page url
[uri:/jk2-status/*]
group=status:status
AJP Connector configuration of server.xml ---------------------------------
<!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8009" minProcessors="5" maxProcessors="75"
enableLookups="true" redirectPort="8443"
acceptCount="10" debug="0" connectionTimeout="0"
useURIValidationHack="false"
protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
jk2.properties --------------------------------------------------------------
handler.list=request,container,channelSocket
channelSocket.port=8009
channelSocket.address=127.0.0.1
----- Original Message -----
From: "Simon Pabst" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Wednesday, July 16, 2003 3:25 PM
Subject: Re: Tomcat-ModJK2 --> [error] mod_jk child init 1 0
> Post the JK2 configuration of your httpd.conf and workers2.properties
> and your AJP Connector configuration of tomcat/conf/server.xml and
> tomcat/conf/jk2.properties
>
> What Apache/mod_jk2/Tomcat version are you using?
>
> Is Tomcat running, are any errors in tomcat/logs/catalina.out?
>
> Did you build mod_jk2 with jni or any extra flags?
>
>
> At 16:26 16.07.2003 -0700, you wrote:
> >Hi, I can't figure this one out, I have Tomcat and Apache talking to each
> >other thru jk2 all fine and dandy except for this error on startup of Apache:
> >
> >[error] mod_jk child init 1 0
> >
> >which in turn, I suspect, spawns these errors:
> >
> >[error] Error ajp_process_callback - write failed
> >[error] ajp13.service() ajpGetReply recoverable error 3
> >[error] Error ajp_process_callback - write failed
> >[error] ajp13.service() ajpGetReply recoverable error 3
> >[error] ajp13.service() Error forwarding ajp13:localhost:8009 1 0
> >[error] mod_jk.handler() Error connecting to tomcat 3
> >
> >
> >I have lost the battle...looking for any insight at all!
> >
> >TIA, Rick
> >
> >
> >
> >---------------------------------------------------------------------
> >To unsubscribe, e-mail: [EMAIL PROTECTED]
> >For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]