Error: cannot connect to upstream: fastcgi while upgrading from 8.4.2 to 9.0.x

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • espouser123
    Junior Member
    • Mar 2025
    • 1

    Error: cannot connect to upstream: fastcgi while upgrading from 8.4.2 to 9.0.x

    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:

    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

    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!


  • lazovic
    Super Moderator
    • Jan 2022
    • 917

    #2
    Hi espouser123,

    I think that in the case of deploying EspoCRM in the Kubernetes environment, there may be many nuances, and it will be difficult to recommend anything specific here. Please tell me, have you already tried upgrading the instance in the Kubernetes environment before?

    Comment


    • espouser123
      espouser123 commented
      Editing a comment
      Hi lazovic

      we started using EspoCRM with version 8.0.2 and so far, we haven’t encountered any issues when upgrading to newer versions
  • lazovic
    Super Moderator
    • Jan 2022
    • 917

    #3
    espouser123,

    Please check if is there anything in the logs of the EspoCRM instance itself (/data/logs)?

    Comment


    • espouser123
      espouser123 commented
      Editing a comment
      There were a few log entries regarding failed jobs, likely due to temporary network issues (we’ve already checked and connectivity seems fine now), but nothing appears during the actual upgrade attempts that seem to be related to them
  • lazovic
    Super Moderator
    • Jan 2022
    • 917

    #4
    espouser123,

    Can you please check if you have enough disk space on your server? Is there also enough memory for PHP? Maybe you can find something related in the server logs?

    Comment

    Working...