2017-01-10 130 views
1

我已经在我的本地ubuntu服务器16.04上使用apache2(2.4)成功安装了GitLab Community Edition 8.15.2(omnibus),我可以在浏览器中访问它并执行所有任务。但是,当我尝试使用git bash或git gui执行任务(如第一次推送项目或克隆项目)时,它不执行任务,例如gitlab不执行Git的git命令

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 

所以我看着production.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' 

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

回答

1

您也有类似的问题与22532,暗指升级后gitlab-workhorse错配版本..

Issue 23133也不在话下JWT::DecodeError (Nil JSON web token)错误信息,并指出gitlab-recipes issue 57,与可能的解决办法:

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

(见更多at this comment

+0

改变线gitlab_workhorse [ '的listen_addr'] = “的/ var /选择/ gitlab/gitlab-主力/插口” 到gitlab_workhorse [ '的listen_addr'] = “本地主机:8282” ,在/etc/gitlab/gitlab.rb中,安装后已经安装好了,现在每件事情都在运行。谢谢@VonC –