当代码被推送到gitlab时无法触发jenkins构建

时间:2017-02-16 18:54:18

标签: git jenkins gitlab webhooks jenkins-pipeline

当我尝试使用gitlab的webhooks与Jenkins一起制作CI时,我遇到了gitlab的问题。当我将代码推送到gitlab时,从production.log

中观察我的日志中的错误
Started GET "/root/first1.git/info/refs?service=git-receive-pack" for 10.X.x.x. at 2017-02-16 13:
41:40 -0500
Processing by Projects::GitHttpController#info_refs as */*
  Parameters: {"service"=>"git-receive-pack", "namespace_id"=>"root", "project_id"=>"first1.git"}
Filter chain halted as :authenticate_user rendered or redirected
Completed 401 Unauthorized in 20ms (Views: 0.5ms | ActiveRecord: 2.0ms)
Started GET "/root/first1.git/info/refs?service=git-receive-pack" for 10.X.x.x at 2017-02-16 13:
41:41 -0500
Processing by Projects::GitHttpController#info_refs as */*
  Parameters: {"service"=>"git-receive-pack", "namespace_id"=>"root", "project_id"=>"first1.git"}
Filter chain halted as :authenticate_user rendered or redirected
Completed 401 Unauthorized in 17ms (Views: 0.4ms | ActiveRecord: 1.9ms)
Started GET "/root/first1.git/info/refs?service=git-receive-pack" for 10.x.x.x at 2017-02-16 13:
41:41 -0500
Processing by Projects::GitHttpController#info_refs as */*
  Parameters: {"service"=>"git-receive-pack", "namespace_id"=>"root", "project_id"=>"first1.git"}
Completed 200 OK in 106ms (Views: 0.2ms | ActiveRecord: 4.3ms)
Started POST "/root/first1.git/git-receive-pack" for 10.x.x.x at 2017-02-16 13:41:42 -0500
Processing by Projects::GitHttpController#git_receive_pack as application/x-git-receive-pack-result
  Parameters: {"namespace_id"=>"root", "project_id"=>"first1.git"}
Completed 200 OK in 106ms (Views: 0.3ms | ActiveRecord: 4.2ms)
Started POST "/api/v3/internal/allowed" for 127.x.x.x at 2017-02-16 13:41:42 -0500
Started GET "/api/v3/internal/broadcast_message" for 127.x.x.x at 2017-02-16 13:41:42 -0500
Started GET "/api/v3/internal/merge_request_urls?project=/var/opt/gitlab/git-data/repositories/root/
first1.git&changes=1de706faf4e91b9f9264e114e12bdfdf16ff6d99%208b239d8f63c5db38a8d725baa62d5930371eea
fb%20refs/heads/master%0A" for 127.x.x.x. at 2017-02-16 13:41:42 -0500
WebHook Error => Failed to open TCP connection to 192.X.x.x.:8080 (getaddrinfo: Name or service
 not known)
Updating statistics for project 3
Scheduling removal of build artifacts

2 个答案:

答案 0 :(得分:0)

阅读你的日志:

  

WebHook错误=>无法打开到192.X.x.x.:8080的TCP连接(getaddrinfo:名称或服务未知)

使用IP地址看起来像名称解析错误似乎有点奇怪,但通常看起来你有某种网络问题阻止你的GitLab服务器到达配置的IP地址和端口。

可能有防火墙阻止来自GitLab服务器的出站连接,或者webhook URL中Jenkins服务器的IP地址不正确。

答案 1 :(得分:0)

使用Git plugin - 我知道它有效,对Gitlab插件不太确定抱歉。

GitLab上的webhook网址应设置为:

http://jenkins.example.com/git/notifyCommit?url=https://gitlab.example.com/project/repository

https://gitlab.example.com/project/repository替换为您的git存储库的URL。您可以通过访问gitlab中的repo来获取URL,只需将URL复制到浏览器URL栏中即可。

当您选择的事件发生时,这应该触发Jenkins的构建。