On Mon, 21 Oct 2002, Turner, John wrote: > Oops, you are right. I checked the other worker.* statements, but > for some reason missed that one. This same problem happened to > someone else last week, and nobody caught it except Milt Epstein.
Somebody call me? :-) BTW, some good clues as to what was going on here (or at least where to look for the problem) can be found in the mod_jk.log file. To wit, here are the entries for the last URL it's trying to find a worker for: [lun oct 21 19:53:18 2002] [jk_uri_worker_map.c (351)]: Into jk_uri_worker_map_t::map_uri_to_worker [lun oct 21 19:53:18 2002] [jk_uri_worker_map.c (368)]: Attempting to map URI '/tomcat-docs/' [lun oct 21 19:53:18 2002] [jk_uri_worker_map.c (391)]: jk_uri_worker_map_t::map_uri_to_worker, Found a context match ajp13 -> /tomcat-docs/ [lun oct 21 19:53:18 2002] [jk_worker.c (123)]: Into wc_get_worker_for_name ajp13 [lun oct 21 19:53:18 2002] [jk_worker.c (127)]: wc_get_worker_for_name, done did not found a worker The third line indicates that it found a context match. That means that it found a JkMount directive that covers the URL. The fifth and final line indicates that it didn't find a worker for the context match it found previously. That points to a problem in the workers.properties file (including perhaps a mismatch between the worker name specified in a JkMount directive and those specified in the workers.properties file). FWIW, in this case, as someone else did, I saw the BindingException in the one log file and thought the problem was related to that -- something like the running instance of Tomcat was not shut down before restarting, and that it was actually the old instance, with the old config -- using the mismatched worker names -- that was still running. I was going to suggest the person make sure the Tomcat instance was really down before restarting it. But looks like they found the problem anyway. > > -----Original Message----- > > From: Jean-Baptiste Onofr� [mailto:jbonofre@;phpfr.org] > > Sent: Monday, October 21, 2002 2:29 PM > > To: Tomcat Users List > > Subject: Re: mod_jk problem > > > > > > Re, > > > > I have find the problem !!!!!! > > > > In my workers.properties, i have : > > workers.list=ajp13 > > > > and not : > > worker.list=ajp13 > > > > Thanks for your help :) > > > > Excuse me for big messages, > > > > Best regards > > -- > > Jean-Baptiste Onofr� (Nanthrax) > > Membre fondateur de phpFR.org > > http://www.phpfr.org > > [EMAIL PROTECTED] > > Membre fondateur du LUG B�ziers > > http://www.lug-beziers.org > > [EMAIL PROTECTED] > > > > -- > > To unsubscribe, e-mail: > > <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> > > For additional commands, e-mail: > > <mailto:tomcat-user-help@;jakarta.apache.org> > > > > -- > To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org> > > Milt Epstein Research Programmer Integration and Software Engineering (ISE) Campus Information Technologies and Educational Services (CITES) University of Illinois at Urbana-Champaign (UIUC) [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>
