使用 PHP 7.4 通过 SSL 连接到 Windows AD
$ldaphost = "ldaps://...";
$ldapUsername = "CN=supervisor,OU=test_Users,DC=test,DC=org";
$ldapPassword = "xxxx";
$ds = ldap_connect($ldaphost,636);
echo $ds;
if (!ldap_start_tls($ds)) {
print "Could not start secure TLS connection";
}else {
// now we need to bind to the ldap server
$bth = ldap_bind($ds, $ldapUsername, $ldapPassword) or die("\r\nCould not connect to LDAP server\r\n");
}
错误:ldap_start_tls():无法启动 TLS:无法联系 LDAP 服务器
调试后 :ldap_connect 按预期返回 id 进程。我尝试使用 GUI 工具连接并且连接成功,这意味着我消除了证书问题。我感谢任何解决此问题的想法谢谢
墨色风雨
繁星coding