我想连接到 LDAP 服务器以使用 php 获取 OU 列表。
$ldaphost = "ldap://192.168.10.10";
$ldapUsername = "ldap_user";
$ldapPassword = "xxxxxxxx";
$ds = ldap_connect($ldaphost);
if(!ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3)){
print "Could not set LDAPv3\r\n";
}
else if (!ldap_start_tls($ds)) {
print "Could not start secure TLS connection";
}
else {
// binding to the ldap server
$bth = ldap_bind($ds, $ldapUsername, $ldapPassword) or die("\r\nCould not connect to LDAP server\r\n");
}
运行代码后,我收到以下错误:
LDAP_START_TLS(): UNABLE TO START TLS: SERVER IS UNAVAILABLE
我不知道我的代码是否有问题或服务器配置有任何问题!?但是,我可以使用相同的 LDAP 用户名和密码通过 AdExplorer 连接到服务器。