Ronald Repolona
Ronald Repolona

Reputation: 71

Need help in fixing this error "Connection reset by peer - SSL_connect"

Need help in fixing this error

Faraday::ConnectionFailed (Connection reset by peer - SSL_connect):

this is logfile from /var/log/gitlab/gitlab-rails/production.log

i got this error when i'm trying to google auth to our gitlab-ce.

this is my environment: - CentOS 7 - Gitlab 12.5

any help is appreciated :) Thanks

Upvotes: 3

Views: 3744

Answers (1)

VonC
VonC

Reputation: 1326676

You had a similar error reported in gitlab-org/gitlab-foss issue 1924:

I had the exact same thing happen last night and it turned out that the /etc/resolv.conf within the Docker container was unreadable by the "git" user for the container.
This prevents it from resolving the host you're calling back to.

The ball started rolling after reading this issue: docker-gitlab issue 627.

In your case, you might not use a GitLab within Docker, in which case, check your proxy.

Upvotes: 1

Related Questions