2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

外付けNGINX環境でGitLab v13.5にアップデートすると502 Bad Gateway

Last updated at Posted at 2020-11-04

概要

GitLab v13.5にアップデートしたら 502 Bad Gatewayになった。
なにが悪かったかのかを簡単にまとめる。

先に結論
悪いのはGitLabではなく、NGINXのリバースプロキシ設定を変えなくてはならないのに変えなかったから。

発生環境

  • Ubuntu 18.04
  • GitLab v13.5.1 Omnibus版
    • アップデート前は v13.4.3
  • NGINX v1.19.3
    • Omnibus版同梱ではなく、独立して動いている

何が起こったか?

GitLab v13.4.3 -> v13.5.1にアップデートしたら502 Bad Gatewayになった。
慌ててGitLabの動作確認するも問題なし

$sudo gitlab-ctl status
# ここにいっぱいRUNって出てる。

原因を見つける

なんやかんやあってGitLab v13.5リリースBlog見ると次の一文があった。1

スクリーンショット 2020-11-05 0.13.13.png

The default path for the Workhorse socket changed from /var/opt/gitlab/workhorse/socket to /var/opt/gitlab/workhorse/sockets/socket in 13.5. A gitlab-ctl reconfigure is required during upgrade to apply this change. If you use SELinux and have specified a custom socket path, see the upgrade documentation for some manual steps that are required.

もう一度特に重要なところを

The default path for the Workhorse socket changed from /var/opt/gitlab/workhorse/socket to /var/opt/gitlab/workhorse/sockets/socket in 13.5.

まじでImportant

対策

これが全ての答え

NIGNXのリバースプロキシ設定のconfファイル
よくある場所だと etc/nginx/sites-available/GitLab.confとか

gitlab-omnibus-ssl-nginx.conf
upstream gitlab-workhorse {
  # On GitLab versions before 13.5, the location is
  # `/var/opt/gitlab/gitlab-workhorse/socket`. Change the following line
  # accordingly.
+  server unix:/var/opt/gitlab/gitlab-workhorse/sockets/socket fail_timeout=0;
}

ソケットのパスを/var/opt/gitlab/gitlab-workhorse/sockets/socketに変えればOK

参考サイト

  1. ページの1番下に書いてある。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?