To answer your original question: 1) An MBean is a JMX manageable object. (http://java.sun.com/products/JavaManagement/) 2) As Tim has pointed out, the Ajp13Connector is deprecated in TC 4.1.x. As a result, it doesn't have an MBean defined for it, since the admin webapp won't allow you to configure it.
Solutions: 1) Follow Tim's advice and use the CoyoteConnector (my recommendation also). 2) Remove (or comment out) the ServerLifecycleListener in server.xml (this means that you can't use the admin webapp at all). "Tim Funk" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Try using the coyote listeners. > > -Tim > > Dave Naden wrote: > > I'm trying to config Tomcat 4.1.24 with IIS, and one step is to uncomment the line from server.xml: > > > > <!-- 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 when I do this, Tomcat won't start, and I get the following in the error log: > > > > Jun 7, 2003 1:40:03 PM org.apache.coyote.http11.Http11Protocol init > > INFO: Initializing Coyote HTTP/1.1 on port 8080 > > ServerLifecycleListener: createMBeans: MBeanException > > java.lang.Exception: ManagedBean is not found with Ajp13Connector > > at org.apache.catalina.mbeans.MBeanUtils.createMBean(MBeanUtils.java:227 > > ) > > at org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(Serve > > rLifecycleListener.java:402) > > at org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(Serve > > rLifecycleListener.java:854) > > at org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(Serve > > rLifecycleListener.java:828) > > at org.apache.catalina.mbeans.ServerLifecycleListener.createMBeans(Serve > > rLifecycleListener.java:372) > > at org.apache.catalina.mbeans.ServerLifecycleListener.lifecycleEvent(Ser > > > > Can anybody help? > > > > -Dave Naden > > > > > > --------------------------------------------------------------------- > > 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]
