Review board整合ldap

Review board整合ldap

Review board本身已经支持ldap登录,我们需要做的就是一些安装、配置工作。首先review board需要python-ldap,如果没有安装,我们在打开ldap配置页面,就会提醒LDAP authentication requires the python-ldap library, which is not installed.

python-ldap下载地址https://pypi.python.org/pypi/python-ldap/,下载完成后,安装。或者直接使用yum、apt-get安装。

安装完毕后,可以在review board admin控制台进行ldap配置,如果是本机搭建,那地址应该是http://localhost/admin/settings/authentication/。

  • Authentication Method 这个当然选择LDAP

  • LDAP Server,这个填写ldap服务器的地址,格式ldap://yourdomain.com:389

  • LDAP Base DN,这里填写dn信息,格式OU=yourdomain,DC=yourserver,DC=com,如果不知道,需要找ldap管理员获取。

  • Given Name,这个需要根据ldap服务器信息填写,一般是givenName

  • Surname Attribute,一般是sn

  • Full Name Attribute,一般是cn

  • Email Domain填写邮箱后缀,如baidu.com,sina.com.cn等

  • E-Mail LDAP Attribute,一般填写mail

继续阅读


你可能感兴趣的:(Review board整合ldap)