gitlab接入ldap

avatar 2021年1月14日18:05:58 评论 1,639 次浏览

gitlab接入ldap是为了方便用户的管理,至于ldap和gitlab的安装方法就不多叙述了,ldap的安装方法可以参考:https://www.wulaoer.org/?p=1423,gitlab的安装房可以参考:https://www.wulaoer.org/?p=957

[root@wulaoer ~]# vim /etc/gitlab/gitlab.rb
gitlab_rails['ldap_enabled'] = true
# gitlab_rails['prevent_ldap_sign_in'] = false

###! **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.211.55.5'
     port: 389
     uid: 'uid'
     bind_dn: 'uid=root,ou=user,cn=root,dc=wulaoer,dc=org'
     password: '**************'
     encryption: 'plain' # "start_tls" or "simple_tls" or "plain"
     verify_certificates: true
     smartcard_auth: false
     active_directory: true
     allow_username_or_email_login: false
     lowercase_usernames: false
     block_auto_created_users: false
     base: 'ou=user,dc=wulaoer,dc=org'
     user_filter: ''
EOS

我这里是通过root用户授权给user组下的所有用户使用gitlab,所以只修改这些即可,修改后重启一下gitlab,在用户登陆里就有ldap等下选项,输入ldap创建的用户名和密码即可。我这里没有什么问题可以登陆。这里就不验证了

avatar
  • 未经博主允许,禁止转载本博客任何内容,如需转载请留言,谢谢合作!!!
  • 转载注明:gitlab接入ldap | 吴老二

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: