Still encountering some issues..

First I am following the howto's by John Turner.. (thanks much..BTW)

Before doing anything I'm seeing the following output when starting tomcat

===============
INFO: Initializing Coyote HTTP/1.1 on port 8080
mod_jk location: libexec/mod_jk.so
Make sure it is installed correctly or set the config location
Using <ApacheConfig modJk="PATH_TO_MODJK.SO_OR_DLL"/>
.....
INFO: JK2: ajp13 listening on tcp port 8009
..
INFO: Jk running ID=0 time 13/70 config-/var/tomcat4/conf/jk2.properties
===================

Adding the recomending lines to the server.xml and creating the workers.properties file does not create the /auto/mod_jk.conf file I was previously expecting.. (good)

But now I see that I have JK2 on the port that I want only JK to be running..??? yes ???

I find the following in my 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="20000"
useURIValidationHack="false"
protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
========================

so I comment it out and uncomment the following

============
<!-- Define an AJP 1.3 Connector on port 8009 --> <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
port="8009" minProcessors="5" maxProcessors="75"
acceptCount="10" debug="0"/>
============
but now I get the following error when restarting tomcat...

========================
ServerLifecycleListener: createMBeans: MBeansException
java.lang.Exception: ManagedBean is not found with Ajp13Connector
....
====================

if I uncomment both I still get this error.. (so it has nothing to do with the JK2 connector even though I don't think there can be two connectors on the same port, which lead me to comment out the JK2 one)

Suggestions appreciated...

Thanks, John..



--
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