首页 > 其他 > 详细

Jenkins持续集成 之 GitLab使用LDAP登陆

时间:2018-12-03 00:36:00      阅读:322      评论:0      收藏:0      [点我收藏+]
一、在配置文件下增加如下内容
gitlab_rails[‘ldap_enabled‘] = true

###! **remember to close this block with ‘EOS‘ below**
gitlab_rails[‘ldap_servers‘] = YAML.load <<-‘EOS‘
   main: # ‘main‘ is the GitLab ‘provider ID‘ of this LDAP server
     label: ‘LDAP‘
     host: ‘10.3.151.13‘
     port: 389
     uid: ‘sAMAccountName‘
     bind_dn: ‘cn=ittest,cn=Users,dc=xxx,dc=com‘
     method: ‘plain‘ # "tls" or "ssl" or "plain"
     password: ‘xxxx‘
     active_directory: true
     allow_username_or_email_login: false
     lowercase_usernames: false
     block_auto_created_users: false
     base: ‘OU=yyy,DC=xxx,DC=com‘
     user_filter: ‘‘
EOS

备注:需运行gti-clt reconfigure git-clt restart 才生效

技术分享图片

Jenkins持续集成 之 GitLab使用LDAP登陆

原文:http://blog.51cto.com/12965094/2325051

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!