You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2012/03/16 12:29:57 UTC

DO NOT REPLY [Bug 52927] New: [Bug in httpd 2.2.4] [error] (70014)End of file found: proxy: prefetch request body failed

https://issues.apache.org/bugzilla/show_bug.cgi?id=52927

             Bug #: 52927
           Summary: [Bug in httpd 2.2.4] [error] (70014)End of file found:
                    proxy: prefetch request body failed
           Product: Apache httpd-2
           Version: 2.2.4
          Platform: PC
            Status: NEW
          Severity: normal
          Priority: P2
         Component: mod_proxy
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: alex_couturier@yahoo.com
    Classification: Unclassified


Hello,

I have this bug in my httpd log 
[error] (70014)End of file found: proxy: prefetch request body failed
Could you tell me what you know about this bug ?

Thank you,
Ac

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 52927] [Bug in httpd 2.2.4] [error] (70014)End of file found: proxy: prefetch request body failed

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=52927

Eric Covener <co...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |NEEDINFO
         OS/Version|                            |All

--- Comment #1 from Eric Covener <co...@gmail.com> 2012-03-16 11:32:22 UTC ---
Error messages aren't bugs.  The message means the client closed the connection
while mod_proxy was reading the request body.  Do you have any indication it
wasn't?

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 52927] [Bug in httpd 2.2.4] [error] (70014)End of file found: proxy: prefetch request body failed

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=52927

--- Comment #3 from kialex <al...@yahoo.com> 2012-03-16 14:19:15 UTC ---
(In reply to comment #1)
> Error messages aren't bugs.  The message means the client closed the connection
> while mod_proxy was reading the request body.  Do you have any indication it
> wasn't?

Hello Eric

Thanks your for your time
So to explain you exactly my problem, I use the Apache HTTP Server 2.2.4 with
the module mod_proxy which supports pooled connections to a backend server. 

In my proxy, i have this configuration

    Timeout 300
    KeepAlive On
    MaxKeepAliveRequests 100
    KeepAliveTimeout 15

    ProxyRequests Off
    ProxyVia Off
    ProxyPass / http://192.168.54.20
    ProxyPassReverse / http://192.168.54.20/

        </Proxy>
</VirtualHost>

However the link between the Apache httpd server and the backend server broks
two times and after it's works.

Then my httpd_error.log
[Fri Mar 16 09:24:44 2012] [error] (70014)End of file found: proxy: prefetch
request body failed to 192.168.54.44:80 (192.168.54.44) from 172.23.68.81 ()
[Fri Mar 16 09:24:44 2012] [error] (70014)End of file found: proxy: prefetch
request body failed to 192.168.54.44:80 (192.168.54.44) from 172.23.68.81 ()

Could you tell if i can reduce the number of link broken ?
Thanks,
AC

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 52927] [Bug in httpd 2.2.4] [error] (70014)End of file found: proxy: prefetch request body failed

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=52927

--- Comment #4 from Eric Covener <co...@gmail.com> 2012-03-16 14:22:53 UTC ---
No clue, if you want to discuss things you have to use a mailing list. 
Bugzilla is for reporting bugs.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 52927] [Bug in httpd 2.2.4] [error] (70014)End of file found: proxy: prefetch request body failed

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=52927

--- Comment #2 from kialex <al...@yahoo.com> 2012-03-16 11:58:11 UTC ---
I don't know if this problem is a bug or not. 
However when i start the browser and i connect for the first time by pass the
proxy, the link is broken two times and after it's works.

Then my httpd_error.log
[Fri Mar 16 09:24:44 2012] [error] (70014)End of file found: proxy: prefetch
request body failed to 192.168.54.44:80 (192.168.54.44) from 172.23.68.81 ()
[Fri Mar 16 09:24:44 2012] [error] (70014)End of file found: proxy: prefetch
request body failed to 192.168.54.44:80 (192.168.54.44) from 172.23.68.81 ()

And then my proxy configuration

<VirtualHost 192.168.51.60:80>
        ServerName docprint.faceo.com
        SSLProxyEngine On

        SetHandler perl-script
        PerlTransHandler Vulture::TransHandler
        PerlResponseHandler Vulture::ResponseHandler

        ProxyRequests Off
        ProxyVia Off
        ProxyPass / http://192.168.54.20
        ProxyPassReverse / http://192.168.54.20/
LogLevel warn
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""
combined
ErrorLog /var/log/Vulture-docprint.faceo.com-error_log
CustomLog /var/log/Vulture-docprint.faceo.com-access_log combined

        <Location /static>
                SetHandler default-handler
        </Location>

        <Proxy *>
                SetHandler perl-script

                #Default mod_access config
AllowOverride None
Order deny,allow
Allow from all
        </Proxy>
</VirtualHost>

Have you got enought information to debug ?

Tnanks

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org