|
|
|
ช่วยด้วยค่ะ เกี่ยวกับ LDAP ค่ะ Warning: ldap_bind(): Unable to bind to server: Invalid credentials in |
|
|
|
|
|
|
|
เอา code มาให้ดูด้วยซิครับ มาลอยๆแบบนี้ เอา error ไปหาใน google เลยครับ
มี code อย่างน้อยจะได้รู้ว่าใช้คำสั่งถูกหรือผิด
|
|
|
|
|
Date :
2016-06-16 14:45:43 |
By :
mee079 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษค่ะ รีบเกิน เลยลืมใส่ code ค่ะ
Code (PHP)
$user = 'aaaa_b';
$password = 'xxxx';
$host = '192.168.1.31';
$port = 386;
$basedn = 'ou=xxx,dc=yyyyyy,dc=net';
$group = 'Users';
$ldaprdn = 'dc=yyyyyy,dc=net';
$domain='@xxx.com';
$ad = ldap_connect("ldap://$host", $port);
if ($ad) {
echo "Connected" . "<br/>";
} else {
echo ldap_error($ad) . "<br/>";
}
ldap_set_option($ad, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ad, LDAP_OPT_REFERRALS, 0);
// $ldapBind = ldap_bind($ad, "{$user}@{$domain}", $password); // 1.
// $ldapBind = ldap_bind($ad, $user, $password); // 2.
$ldapBind = ldap_bind($ad, $ldaprdn, $password); // 3.
// $ldapBind = ldap_bind($ad, null, null); // 4.
if ($ldapBind) {
echo "Binded" . "<br/>";
} else {
echo ldap_error($ad) . "<br/>";
}
|
|
|
|
|
Date :
2016-06-16 15:00:04 |
By :
naked13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จากที่หาข้อมูลมันติด TLS,SSL ค่ะ
ไม่แน่ใจต้องแก้หรือปิดตรงไหนใน server ค่ะ
ใช้ window server 2012 ค่ะ
|
|
|
|
|
Date :
2016-06-16 15:51:57 |
By :
naked13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$basedn = 'ou=xxx,dc=yyyyyy,dc=net';
$group = 'Users';
$ldaprdn = 'dc=yyyyyy,dc=net';
$domain='@xxx.com';
ตั้งขึ้นมาตามนี้และมีในระบบจริงๆใช่มั๊ยครับ
หรือว่าใส่ไปมั่วๆ ถ้ามั่วๆมันก็ถูกแล้วที่จะ error
แต่ถ้าจริงต้องเช็ค ก่อนตามนี้
Code (PHP)
$dn_host = '10.25.25.99';
$ldapusers = "[email protected]";
$ldappasswd = "yourpassword";
$ldapconn = @ldap_connect($dn_host, 389)or die("Could not connect to LDAP Server.");
ldap_set_option($ldapconn, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ldapconn, LDAP_OPT_REFERRALS, 0);
$ldapbind = @ldap_bind($ldapconn ,$ldapusers, $ldappasswd);
|
|
|
|
|
Date :
2016-06-16 16:12:24 |
By :
mee079 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หนูลองเอา code พี่ไปใช้
Code (PHP)
$dn_host = '10.25.25.99';
$ldapusers = "[email protected]";
$ldappasswd = "yourpassword";
$ldapconn = @ldap_connect($dn_host, 389)or die("Could not connect to LDAP Server.");
ldap_set_option($ldapconn, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ldapconn, LDAP_OPT_REFERRALS, 0);
$ldapbind = @ldap_bind($ldapconn ,$ldapusers, $ldappasswd);
echo ldap_error($ldapconn);
ค่าที่แจ้งคือ Strong(er) authentication required
ไม่รู้จะแก้อย่างไรค่ะ
ปล
$dn_host
$ldapusers
$ldappasswd
หนูแก้ค่าตามใช้งานจริงแล้วนะคะ แต่ที่โพสไปคือยกตัวอย่างค่ะ
|
ประวัติการแก้ไข 2016-06-16 16:20:01
|
|
|
|
Date :
2016-06-16 16:19:31 |
By :
naked13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
protected static function adAccount($account, $password, $description) {
$host = 'xxx';
$domain = 'xx.xx.xx';
$base_dn = 'dc=xx,dc=xx,dc=xx';
$username = "{$account}@{$domain}";
@$ldap_connect = ldap_connect("ldap://{$host}.{$domain}");
if ($ldap_connect != false) {
ldap_set_option($ldap_connect, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ldap_connect, LDAP_OPT_REFERRALS, 0);
@$ldap_bind = ldap_bind($ldap_connect, $username, $password);
if ($ldap_bind != false) {
$filter = "(samaccountname={$account})";
$search = ldap_search($ldap_connect, $base_dn, $filter);
$info = ldap_get_entries($ldap_connect, $search);
$description = $info[0]['description'][0];
}
ldap_unbind($ldap_connect);
}
return self::createUser($account, $description);
}
|
|
|
|
|
Date :
2016-06-17 06:46:32 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|