the signing failure problem in the first logining of gitlab-ce and solution sharing

problem

In this case,I was in trouble when I install the gitlab-ce service in my ubuntu system.The account I had create was losing efficacy.Because of this,I look up the material on the internet and the solution is to update the configuration of your gitlab-ce.

solution

  • 1.we should change our externel_url
sudo gedit /etc/gitlab/gitlab.rb

the signing failure problem in the first logining of gitlab-ce and solution sharing_第1张图片and another port also need to update
the signing failure problem in the first logining of gitlab-ce and solution sharing_第2张图片make your configuration rework

gitlab-ctl reconfigure 
gitlab-ctl restart
  1. Second step is set your super account
  • enter your bin catalogue
cd /opt/gitlab/bin
  • open your gitlab-ce console
sudo gitlab-rails console production

input as following

[root@gitlab bin]# sudo gitlab-rails console -e production
--------------------------------------------------------------------------------
 Ruby:         ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [x86_64-linux]
 GitLab:       14.0.5 (25fc1060aff) FOSS
 GitLab Shell: 13.19.0
 PostgreSQL:   12.6
--------------------------------------------------------------------------------
Loading production environment (Rails 6.1.3.2)
irb(main):001:0>  user = User.where(id: 1).first
=> #
irb(main):002:0> user.password = '12345678'
=> "12345678"
irb(main):003:0> user.password_confirmation = '12345678'
=> "12345678"
irb(main):004:0>  user.save!
Enqueued ActionMailer::MailDeliveryJob (Job ID: f541a39e-274e-4f1c-8c04-157a4e933b93) to Sidekiq(mailers) with arguments: "DeviseMailer", "password_change", "deliver_now", {:args=>[#>]}
=> true
irb(main):005:0> exit

and you got it.

你可能感兴趣的:(gitlab,linux,postgresql)