• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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