我试图在Phabricator中配置LDAP身份验证。
/config/group/ldap/上的设置已经完成。但是,当试图使用LDAP登录时,phabricator将通过以下错误回答phabricator:
>>> UNRECOVERABLE FATAL ERROR <<<
Call to undefined function ldap_connect()
/sfrphabricator/phabricator/src/applications/auth/ldap/PhabricatorLDAPProvider.php:110
┻━┻ ︵ ¯\_(ツ)_/¯ ︵ ┻━┻是否有任何配置技巧的ldap认证的噬菌体?
发布于 2014-02-27 15:25:38
如果您的匿名用户名有另一个DN,您必须首先检查Search,并给出它的所有ldap“特性”。
例子:
LDAP Hostname : yourLdapHostname.com
Base Distinguished Name : OU=UsersEmea,DC=emea,DC=msad,DC=mycorp
Search Attribute : sAMAccountName
Check Search First
Anonymous Username : CN=myanonymous,OU=otherservice,DC=emea,DC=msad,DC=mycorp
Anonymous Password : <password of myanonymous>发布于 2013-09-10 02:16:39
您需要安装LDAP PHP扩展。通常,您可以这样做:
apt-get install php5-ldap
yum install php-ldaphttps://stackoverflow.com/questions/18697480
复制相似问题