Graham Leggett wrote:
> Mladen Turk wrote:
> 
> > BTW, the errors reported comes from mod_proxy.
> 
> What are the errors though, and do they come from mod_proxy 
> or mod_proxy_http?
>

All are exactly the same:

[error] (OS 10048)Only one usage of each socket address (protocol/network
address/port) is normally permitted.  : proxy: HTTP: attempt to connect to
127.0.0.1:8080 (localhost) failed
 
> It would be a huge help to the people using proxy (ie for non 
> tomcat related stuff) if we could find and fix these error 
> conditions under load.
>

We had a same problen in jk for over two years now. The problem is that you
will need at least:

Line 1037 in proxy_util.c:

        /* make the connection out of the socket */
        do {
            rv = apr_socket_connect(*newsock, backend_addr);
        } while (APR_STATUS_IS_EINTR(rv)); 


But again it might be just an attemp to connect to an nonclosed connection
(as BTW the error suggests), or perhaps connection beeing in the process of
disconnection, but cause of high load you have a race condition.


MT.

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to