GitHub Lab不从Git执行Git命令



我已经成功地在带有apache2(2.4)的本地ubuntu服务器16.04上安装了GitLab社区版8.15.2(综合),我可以在浏览器中访问它并可以执行所有任务。但是当我尝试使用 git bash 或 git gui 执行任务(例如首次推送项目或克隆项目)时,它不会执行任务,例如

git clone http://192.168.179.128/pherry/Pilzon.git

它给出了以下输出

Cloning into 'Pilzon'...
fatal: unable to access 'http://192.168.179.128/pherry/Pilzon.git/': The requested URL returned error: 500

所以我在执行以下行时查看了生产.log文件

git clone http://192.168.179.128/pherry/Pilzon.git

这是日志

Started GET "/pherry/Pilzon.git/info/refs?service=git-upload-pack" for 192.168.179.1 at 2017-01-09 20:00:17 -0800
Processing by Projects::GitHttpController#info_refs as */*
  Parameters: {"service"=>"git-upload-pack", "namespace_id"=>"pherry", "project_id"=>"Pilzon.git"}
Filter chain halted as :authenticate_user rendered or redirected
Completed 401 Unauthorized in 41ms (Views: 0.3ms | ActiveRecord: 5.2ms)
Started GET "/" for 192.168.179.1 at 2017-01-09 20:00:19 -0800
Started GET "/" for 192.168.179.1 at 2017-01-09 20:00:19 -0800
Processing by RootController#index as HTML
Processing by RootController#index as HTML
Completed 401 Unauthorized in 44ms (ActiveRecord: 19.3ms)
Completed 401 Unauthorized in 28ms (ActiveRecord: 4.3ms)

然后它要求输入密码,当我提供密码时,这就是日志

Started GET "/pherry/Pilzon.git/info/refs?service=git-upload-pack" for 192.168.179.1 at 2017-01-09 20:01:52 -0800
Processing by Projects::GitHttpController#info_refs as */*
  Parameters: {"service"=>"git-upload-pack", "namespace_id"=>"pherry", "project_id"=>"Pilzon.git"}
Filter chain halted as :authenticate_user rendered or redirected
Completed 401 Unauthorized in 32ms (Views: 0.6ms | ActiveRecord: 3.5ms)
Started GET "/pherry/Pilzon.git/info/refs?service=git-upload-pack" for 192.168.179.1 at 2017-01-09 20:01:52 -0800
Processing by Projects::GitHttpController#info_refs as */*
  Parameters: {"service"=>"git-upload-pack", "namespace_id"=>"pherry", "project_id"=>"Pilzon.git"}
Completed 500 Internal Server Error in 149ms (ActiveRecord: 5.6ms)
JWT::DecodeError (Nil JSON web token):
  lib/gitlab/workhorse.rb:137:in `decode_jwt'
  lib/gitlab/workhorse.rb:133:in `verify_api_request!'
  app/controllers/concerns/workhorse_request.rb:11:in `verify_workhorse_api!'
  lib/gitlab/middleware/multipart.rb:93:in `call'
  lib/gitlab/request_profiler/middleware.rb:15:in `call'
  lib/gitlab/middleware/go.rb:16:in `call'

我一直在寻找解决方案一天,但还没有找到。

您对 22532 也有类似的问题,暗指升级后版本gitlab-workhorse不匹配。

问题 23133 还提到了JWT::DecodeError (Nil JSON web token)错误消息,并指向gitlab-recipes问题 57,并可能修复:

简短的回答,需要更改/etc/init.d/gitlab以便gitlab-workhorse侦听TCP端口而不是使用unix套接字,然后设置Apache重写到该端口。

(在此评论中查看更多内容)

最新更新