Hi,

I'm trying to set the new issues.apache.org box up with Tomcat 5.5.16 +
tomcat-native-1.1.2 + httpd 2.2.0.  When requests come in, I'm seeing
these errors for almost every request in the logs:

Apr 8, 2006 3:28:47 PM org.apache.tomcat.util.net.AprEndpoint$Poller run
SEVERE: Critical poller failure (restarting poller): [3] No such process

We experienced this before on the old issues.apache.org box, but Remy
said he fixed it (and it is fixed on that box):

http://issues.apache.org/jira/browse/INFRA-716?page=all

I've tested both with the patched Tomcat that was working on the old box,
and Tomcat 5.5.16. I've tried with tcnative compiled against APR 1.2.2,
r383698 (the one working on the old box) and SVN head (r392544).

I've also tried starting Tomcat and then restarting httpd to reestablish
the connector connections. No difference.

If it's relevant, the httpd config is at:

https://svn.apache.org/repos/asf/infrastructure/trunk/httpd-conf/brutus.apache.org/vhosts/


Any suggestions? I can upgrade or recompile Tomcat with extra debugging if that
helps. The relevant code is AprEndpoint#run():

                    } else if (rv < 0) {
                        int errn = -rv;
                        /* Any non timeup or interrupted error is critical */
                        if ((errn != Status.TIMEUP) && (errn != Status.EINTR)) {
                            if (errn >  Status.APR_OS_START_USERERR) {
                                errn -=  Status.APR_OS_START_USERERR;
                            }
                            log.error(sm.getString("endpoint.poll.fail", "" + 
errn, Error.strerror(errn)));
                            // Handle poll critical failure
                            synchronized (this) {
                                destroy();
                                init();
                            }
                            continue;
                        }
                    }


I've appended the full stdout from startup.


Thanks,
Jeff

java version "1.5.0_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
BEA JRockit(R) (build R26.0.0-189-53463-1.5.0_04-20051122-2040-linux-ia32, )

Apr 8, 2006 3:28:10 PM org.apache.coyote.http11.Http11AprProtocol init
INFO: Initializing Coyote HTTP/1.1 on http-18080
Apr 8, 2006 3:28:10 PM org.apache.coyote.ajp.AjpAprProtocol init
INFO: Initializing Coyote AJP/1.3 on ajp-18009
Apr 8, 2006 3:28:10 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1306 ms
Apr 8, 2006 3:28:11 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Apr 8, 2006 3:28:11 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.16
Apr 8, 2006 3:28:11 PM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
Apr 8, 2006 3:28:12 PM org.apache.catalina.session.PersistentManagerBase start
SEVERE: No Store configured, persistence disabled
...
Apr 8, 2006 3:28:23 PM org.apache.coyote.ajp.AjpAprProtocol start
INFO: Starting Coyote AJP/1.3 on ajp-18009
Apr 8, 2006 3:28:23 PM org.apache.catalina.storeconfig.StoreLoader load
INFO: Find registry server-registry.xml at classpath resource
Apr 8, 2006 3:28:23 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 12689 ms
2006-04-08 15:28:37,554 INFO [jira.web.filters.AccessLogFilter] jefft 
http://brutus.apache.org/jira/secure/Dashboard.jspa 2482+10528 4900
2006-04-08 15:28:37,554 INFO [jira.web.filters.AccessLogFilter] jefft 
http://brutus.apache.org/jira/secure/Dashboard.jspa 2482+10528 4900
2006-04-08 15:28:38,888 INFO [jira.web.filters.AccessLogFilter] - 
http://brutus.apache.org/jira/secure/Dashboard.jspa 6476+18314 1046
2006-04-08 15:28:38,888 INFO [jira.web.filters.AccessLogFilter] - 
http://brutus.apache.org/jira/secure/Dashboard.jspa 6476+18314 1046
2006-04-08 15:28:38,944 INFO [jira.web.filters.AccessLogFilter] - 
http://brutus.apache.org/jira/secure/Dashboard.jspa 5476+18461 1060
2006-04-08 15:28:38,944 INFO [jira.web.filters.AccessLogFilter] - 
http://brutus.apache.org/jira/secure/Dashboard.jspa 5476+18461 1060
2006-04-08 15:28:47,164 INFO [jira.web.filters.AccessLogFilter] - 
http://brutus.apache.org/jira/secure/Dashboard.jspa 15766-5828 262
2006-04-08 15:28:47,164 INFO [jira.web.filters.AccessLogFilter] - 
http://brutus.apache.org/jira/secure/Dashboard.jspa 15766-5828 262
Apr 8, 2006 3:28:47 PM org.apache.tomcat.util.net.AprEndpoint$Poller run
SEVERE: Critical poller failure (restarting poller): [3] No such process
2006-04-08 15:28:47,740 INFO [jira.web.filters.AccessLogFilter] - 
http://brutus.apache.org/jira/secure/Dashboard.jspa 9995-860 152
2006-04-08 15:28:47,740 INFO [jira.web.filters.AccessLogFilter] - 
http://brutus.apache.org/jira/secure/Dashboard.jspa 9995-860 152
Apr 8, 2006 3:28:47 PM org.apache.tomcat.util.net.AprEndpoint$Poller run
SEVERE: Critical poller failure (restarting poller): [3] No such process
Apr 8, 2006 3:28:54 PM org.apache.tomcat.util.net.AprEndpoint$Poller run
SEVERE: Critical poller failure (restarting poller): [3] No such process
2006-04-08 15:28:54,568 INFO [jira.web.filters.AccessLogFilter] - 
http://brutus.apache.org/jira/secure/Dashboard.jspa 3900+24111 388



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to