Gitlab源码安装报错 Failed to connect to Gitaly…

# sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production
Failed to connect to Gitaly...

参考:https://gitlab.com/gitlab-org/gitlab-ce/issues/47483

# sudo -u git -H vim lib/tasks/gitlab/setup.rake
# sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production

注释第4行:check_gitaly_connection 后重新安装

namespace :gitlab do
  desc "GitLab | Setup production application"
  task setup: :gitlab_environment do
    # check_gitaly_connection
    setup_db
  end

  def check_gitaly_connection
    Gitlab.config.repositories.storages.each do |name, _details|
      Gitlab::GitalyClient::ServerService.new(name).info
    end
  rescue GRPC::Unavailable => ex
    puts "Failed to connect to Gitaly...".color(:red)
    puts "Error: #{ex}"
    exit 1
  end

  def setup_db
    warn_user_is_not_gitlab

    unless ENV['force'] == 'yes'
      puts "This will create the necessary database tables and seed the database."
      puts "You will lose any previous data stored in the database."
      ask_to_continue
      puts ""
    end

    Rake::Task["db:reset"].invoke
    Rake::Task["add_limits_mysql"].invoke
    Rake::Task["setup_postgresql"].invoke
    Rake::Task["db:seed_fu"].invoke
  rescue Gitlab::TaskAbortedByUserError
    puts "Quitting...".color(:red)
    exit 1
  end
end

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/19/gitlab-source-code-installation-error-failed-to-connect-to-gitaly/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Gitlab源码安装报错 Failed to connect to Gitaly…
# sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production Failed to connect to Gitaly... 参考:https://gitlab.com/gitlab-org/gitlab-ce/iss……
<<上一篇
下一篇>>
文章目录
关闭
目 录