Hi everyone,
We are running EspoCRM in a Kubernetes environment using a custom built Helm chart and are attempting to upgrade from version 8.4.2 to 9.0.x.
We’re using PHP 8.2.24 and Nginx 1.27.4-alpine-slim.
After rolling out the new Version we encounter the following error during the upgrade process:
FastCGI-Config:
We've already tried switching to a UNIX socket and running the upgrade via CLI but without success.
Has anyone experienced similar issues while upgrading?
Are there any known pitfalls or configuration changes in the new EspoCRM and PHP version that could lead to this behavior?
Thanks in advance!
We are running EspoCRM in a Kubernetes environment using a custom built Helm chart and are attempting to upgrade from version 8.4.2 to 9.0.x.
We’re using PHP 8.2.24 and Nginx 1.27.4-alpine-slim.
After rolling out the new Version we encounter the following error during the upgrade process:
espocrm-nginx /docker-entrypoint.sh: Configuration complete; ready for start up
espocrm-nginx [error] connect() failed (111: Connection refused) while connecting to upstream, client: 172.16.0.49, server: <xxxx.de>, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "172.16.0.60:80"
espocrm-nginx [error] connect() failed (111: Connection refused) while connecting to upstream, client: 172.16.0.49, server: <xxxx.de>, request: "GET / HTTP/1.1", upstream: "fastcgi://[::1]:9000", host: "172.16.0.60:80"
espocrm-frontend info: Start upgrading from version 8.4.2.
espocrm-frontend info: Start upgrading from version 8.4.2.
espocrm-frontend error: The MAX_UPGRADE_COUNT exceed. The upgrading process has been stopped
espocrm-nginx [error] connect() failed (111: Connection refused) while connecting to upstream, client: 172.16.0.49, server: <xxxx.de>, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "172.16.0.60:80"
espocrm-nginx [error] connect() failed (111: Connection refused) while connecting to upstream, client: 172.16.0.49, server: <xxxx.de>, request: "GET / HTTP/1.1", upstream: "fastcgi://[::1]:9000", host: "172.16.0.60:80"
espocrm-frontend info: Start upgrading from version 8.4.2.
espocrm-frontend info: Start upgrading from version 8.4.2.
espocrm-frontend error: The MAX_UPGRADE_COUNT exceed. The upgrading process has been stopped
FastCGI-Config:
Code:
location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; include fastcgi_params; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; }
We've already tried switching to a UNIX socket and running the upgrade via CLI but without success.
Has anyone experienced similar issues while upgrading?
Are there any known pitfalls or configuration changes in the new EspoCRM and PHP version that could lead to this behavior?
Thanks in advance!
Comment