我的应用程序具有针对用户的ldap身份验证。
当我进行身份验证时,需要很长时间才能完成大约10到15秒。如果我立即注销并再次登录。它只需要100毫秒或很慢的时间。经过一段时间后,当我尝试再次登录时,它又花费了10-15秒。
从我的个人Windows机器连接时速度非常快,但是从我们的Web服务器机器上花费时间。
此问题背后的原因可能是什么?
下面是我的代码,虽然可以成功,但是需要一些时间才能完成。如果我再次刷新此页面,则它是瞬时的。
ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, 7);
//Our Ip address \/
$l = ldap_connect("ldap://1.2.3.4:389");
ldap_set_option($l, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($l, LDAP_OPT_REFERRALS, 0);
//This takes very long time.
ldap_bind($l, "CN=work,OU=XX-ALL,DC=Example,DC=com", "workPassword");
echo(ldap_error($l)."\n");
答案 0 :(得分:0)
您可以捕获网络数据包捕获(例如Wireshark)-由于您使用的是明文LDAP,因此可读。您将在数据包上看到高分辨率的时间戳记,并可以确定延迟发生的位置。您还可以在代码中分配身份验证过程中不同组件的时间,以更好地了解 需要花费很长时间(以下示例)。
是否存在潜在的网络问题-例如大量重新传输的数据包?
在使用SSL的地方,协商SSL会话可能需要很长时间。
使用负载平衡VIP(如果存在)和每个目录服务器,您得到不同的结果吗?可能是一台性能不佳的特定服务器。我还遇到了负载平衡器配置,该配置引入了很多延迟(VIP速度很慢,每个目录服务器都很好),并且能够通过提供良好的统计数据来吸引网络团队。
<?php
// Turn off all error reporting
error_reporting(0);
function getLDAPBindTime($strHostname, $iPort, $strDescription){
$ldaprdn = 'uid=SystemAccount,ou=SystemIDs,o=Company';
$ldappass = 'SystemAccountPassword';
$ldaproot = 'ou=SystemIDs,o=Company';
$iUserObjectClass = 'inetOrgPerson';
echo "<tr><td>$strHostname</td><td>$strDescription</td>";
$strConnectString = "ldaps://" . $strHostname . ":" . $iPort;
$totaltime = microtime();
$totaltime = explode(' ', $totaltime);
$totaltime = $totaltime[1] + $totaltime[0];
$totalbegintime = $totaltime;
$ds = ldap_connect($strConnectString) or $tempflag = 1;
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3) or $ldaperrflag = 1;
$totaltime = microtime();
$totaltime = explode(' ', $totaltime);
$totaltime = $totaltime[1] + $totaltime[0];
$bindbegintime = $totaltime;
if ($ds) {
$scriteria="(&(objectClass=$iUserObjectClass))";
$ldapbind = ldap_bind($ds, $ldaprdn, $ldappass) or $otherflag =1;
$resultcode = ldap_errno($ds);
if($resultcode != 0){
$ldaperrflag = 2;
}
else{
$totaltime = microtime();
$totaltime = explode(' ', $totaltime);
$totaltime = $totaltime[1] + $totaltime[0];
$querybegintime = $totaltime;
$sr=ldap_search($ds,$ldaproot,$scriteria);
$info = ldap_get_entries($ds, $sr);
if($info["count"] > 3){
$ldaperrflag = 0;
}
else{
$ldaperrflag = $ldaperrflag + 5;
}
}
ldap_close($ds);
}
$totaltime = microtime();
$totaltime = explode(" ", $totaltime);
$totaltime = $totaltime[1] + $totaltime[0];
$totalendtime = $totaltime;
$totaltime = ($totalendtime - $totalbegintime)*1000;
$totalconnect = ($bindbegintime - $totalbegintime)*1000;
$totalbind = ($querybegintime - $bindbegintime)*1000;
$totalquery = ($totalendtime - $querybegintime)*1000;
$totaltime = round($totaltime,2);
$totalconnect = round($totalconnect,2);
$totalbind = round($totalbind,2);
$totalquery = round($totalquery,2);
if($ldaperrflag == 2 || $ldaperrflag == 6 || $ldaperrflag == 3 || $ldaperrflag == 7 || $ldaperrflag == 8 || $ldaperrflag == 1){
echo "<td><font color=red>Failed to connect or bind to server</font></td><td>n/a</td><td>n/a</td><td>n/a</td><td>$totaltime ms</td>";
}
if($ldaperrflag == 5){
echo "<td><font color=red>Bind successful, search failed</font></td><td>$totalconnect ms</td><td>$totalbind ms</td><td>$totalquery ms</td><td>$totaltime ms</td>";
}
if($ldaperrflag == 0){
echo "<td><font color=green>Bind and search successful</font></td><td>$totalconnect ms</td><td>$totalbind ms</td><td>$totalquery ms</td><td>$totaltime ms</td>";
}
echo "</tr>";
}
set_time_limit(300);
echo "<head><title>iPlanet LDAP Service Status</title></head><body>";
echo "<h3>iPlanet LDAP Service Status</h3>";
echo "<table cellpadding=1 border=1>";
echo "<tr><td><b>Server</b></td><td><b>Description</b></td><td><b>Status</b></td><td><b>Connect Time</b></td><td><b>Bind Time</b></td><td><b>Query Time</b></td><td><b>Total Time Elapsed</b></td></tr>";
getLDAPBindTime("VIPName.company.gTLD", 636, "ldap.company.gTLD VIP");
getLDAPBindTime("hostname1.company.gTLD", 1636, "LDAP Master Server");
getLDAPBindTime("hostname2.company.gTLD", 1636, "LDAP Master Server");
echo "</table><P>";
echo "</table><p>";
putenv('TZ=GMT');
echo "<font size=-1><P><i>Current time in GMT is ";
echo date("d M Y H:i");
echo '</i><P><a href="https://site.company.gTLD:1977/svcstatus/">Back</a></font>';
echo "</body>";
?>