• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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