• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Resolved fix apache2 AH00898: Error reading from remote server returned by /email/xxxxxxx.com Apache error "

zak

New Pleskian
Server operating system version
OS: Ubuntu 20.04.5 LTS
Plesk version and microupdate number
: Plesk Obsidian 18.0.46 Update #2
I use a python flask server in the backend . It run a script which prepare then download an xml file.

this is working fine is script but if script lasts longer than 80 sec it's stopped and http error 502 is displayed and the xml file is not closed correctly and i get this message :
This page contains the following errors: error on line 2373 at column 426: Extra content at the end of the document Below is a rendering of the page up to the first error.

the log file report :
2022-10-11 21:42:54Error1xx.xxx.xxx.xx502GET /email/xxxxxxxxxx.com HTTP/1.1
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36
1.68 KApache SSL/TLS access
2022-10-11 21:43:25Error
1xx.xxx.xxx.xx

(20014)Internal error (specific information not available): AH01102: error reading status line from remote server 127.0.0.1:5000Apache error
2022-10-11 21:43:25Error
1xx.xxx.xxx.xx

AH00898: Error reading from remote server returned by /email/xxxxxxxxxxx.comApache error

I have try the script directly in the server with ssh terminal and it's executed without any error .

the Apache & nginx Settings
the conf setting:
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPreserveHost On
<Location "/email">
ProxyPass "http://127.0.0.1:5000/email"
ProxyPassReverse "http://127.0.0.1:5000/email"
</Location>
I have try some setting as : retry=1 connectiontimeout=180 timeout=180 keepalive=on
without result.

Any suggestion ? Thanks
 
I use a python flask server in the backend . It run a script which prepare then download an xml file.

this is working fine is script but if script lasts longer than 80 sec it's stopped and http error 502 is displayed and the xml file is not closed correctly and i get this message :


the log file report :


I have try the script directly in the server with ssh terminal and it's executed without any error .

the Apache & nginx Settings

I have try some setting as : retry=1 connectiontimeout=180 timeout=180 keepalive=on
without result.

Any suggestion ? Thanks
for information could resolve it after i have changed the gunicorn timeout
 
Back
Top