管理员区域中的gitlab 500错误

时间:2019-01-10 11:47:20

标签: linux gitlab rhel7

如何复制:

  1. 以管理员身份登录
  2. 进入管理菜单
  3. 点击概述-跑步者
  4. 或在设置中单击“保存”

结果:500错误:糟糕,我们这边出了点问题。

哪个系统正在运行?

RHEL 7,带有Nginx和乘客的出站gitlab

错误:

OpenSSL::Cipher::CipherError ():

lib/gitlab/crypto_helper.rb:27:in `aes256_gcm_decrypt'
app/models/concerns/token_authenticatable_strategies/encrypted.rb:55:in `get_token'
app/models/concerns/token_authenticatable_strategies/base.rb:27:in `ensure_token'
app/models/concerns/token_authenticatable_strategies/encrypted.rb:42:in `ensure_token'


ActionView::Template::Error ():
    37: 
    38:     .col-sm-6
    39:       .bs-callout
    40:         = render partial: 'ci/runner/how_to_setup_runner',
    41:                  locals: { registration_token: Gitlab::CurrentSettings.runners_registration_token,
    42:                            type: 'shared',
    43:                            reset_token_url: reset_registration_token_admin_application_settings_path }

1 个答案:

答案 0 :(得分:3)

我几乎可以确定gitlab是从/etc/gitlab/gitlab-secrets.json(综合安装)或$ GITLAB_HOME / config / secrets.yml(基于源代码的安装)中读取的解密密钥错误。如果您不关心Runner_registration_token,则可以从控制台中重置它:

root@gitlab:/# gitlab-rails console
-------------------------------------------------------------------------------------
 GitLab:       11.5.1 (c90ae59)
 GitLab Shell: 8.4.1
 postgresql:   9.6.8
-------------------------------------------------------------------------------------
Both Deployment and its :status machine have defined a different default for "status". Use only one or the other for defining defaults to avoid unexpected behaviors.
Loading production environment (Rails 4.2.10)
irb(main):001:0> ApplicationSetting.current.reset_runners_registration_token!
=> true
irb(main):002:0>