Bei der Erzeugung eines Report erscheint folgende Fehlermeldung:
org.springframework.remoting.RemoteAccessException: Could not access HTTP invoker remote service at [http://verinice.example.com/veriniceserver/service/validationServiceHttpInvoker]; nested exception is org.apache.commons.httpclient.HttpException: Did not receive successful HTTP response: status code = 502, status message = [Proxy Error]
Lösungsansatz:
Der Proxy-Timeout des Webservers auf dem verinice.PRO-Server muss erhöht werden:
Bearbeiten sie die Datei:
/etc/httpd/conf.d/vhosts.d/verinice.conf
Der Timeout muss erhöht werden:
ProxyPass / http://verinice.example.com:8080/ connectiontimeout=3600
timeout=3600
Die Zeiteinheit ist Sekunde, so dass der Timeout in dem obigen Beispiel
eine Stunde beträgt.
Den Apache Webserver neustarten.
CentOS 6:
service httpd restart
CentOS 7:
systemctl restart httpd