Git Lab Update Issues
Hi Cloudron Team getting error while upgrading the Gitlab from GitLab 16.6.4 to latest version.
i restarted the system even checked all the services but its not updating below is the summary of errors. i even restarted the ubuntu server 22.04.
Database Migration Issues: The error PG::FeatureNotSupported: ERROR: DROP INDEX CONCURRENTLY must be first action in transaction suggests that there's a problem with the way a database migration is being executed. In PostgreSQL, the DROP INDEX CONCURRENTLY command must be run outside of a transaction block because it cannot be executed inside a multi-statement transaction. To resolve this, ensure that the migration script is correctly set up to execute this command outside of any transaction blocks.
File Permission Issues: The error /home/git is not writable indicates a file permission issue. The user under which the GitLab process is running does not have write access to the /home/git directory. You need to check and update the permissions of this directory to make sure that the GitLab process has the necessary access.
Repeated Health Check Errors: The Healtheck error: Error: connect ECONNREFUSED 172.18.18.240:80 suggests that GitLab is trying to connect to a service (possibly a web service or database) at 172.18.18.240 on port 80, but the connection is being refused. This could be due to the service not running, the service not listening on the expected port, network issues, or firewall rules blocking the connection.
URI Gem Warnings: The warnings about constants in the URI module being already initialized suggest that there might be conflicting versions of the URI gem, or the gem is being required multiple times in a way that causes these warnings. This might not be critical, but it's worth checking your gem dependencies and require statements to ensure there's no conflict or unnecessary duplication.