博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用包ldap3进行Python的LDAP操作3
阅读量:6336 次
发布时间:2019-06-22

本文共 2839 字,大约阅读时间需要 9 分钟。

hot3.png

在我本机电脑实现。

Python2.7.8 Windows7 64bit

"""test ldap connection by using ldap3"""from ldap3 import Server, Connectiondef test_201_86():    print("\ntest LDAP connection to 10.99.201.86")    server = Server('10.99.201.86', port=10389)    print('server = %s'%server)    with Connection(server, user='uid=admin,ou=system',                     password='密码') as conn:        conn.bind()        print('conn bind')        #print('server.info = %s'%server.info)        conn.search('ou=users,ou=plmdeploy,dc=lenovo,dc=com',                     '(objectclass=person)', attributes=['uid', 'mail', 'cn'])        if hasattr(conn, 'entries'):            entries = conn.entries            for entry in entries:                print('entry: uid=%s, mail=%s'%(entry['uid'], entry['mail']))def test_lenovo_com():    print("\ntest LDAP connection to lenovo.com")    server = Server('lenovo.com', port=3268)    print('server = %s'%server)    with Connection(server,                     user='CN=adplm,OU=Service Accounts,DC=lenovo,DC=com',                     password='密码') as conn:        print('conn = %s'%conn)        conn.bind()        print('conn bind')        #print('server.info = %s'%server.info)        print('start to print all usres:')        user_ids = ['zhoujj', 'heyan', 'mengqq', 'zhangymd']        for user_id in user_ids:            conn.search('CN=%s,OU=Beijing,OU=China,OU=User Accounts,DC=lenovo,DC=com'%user_id,                         '(objectclass=person)',                         attributes=['distinguishedName', 'mail', 'cn'])            if hasattr(conn, 'entries') and conn.entries:                entry = conn.entries[0]                print('distinguishedName=%s, mail=%s, cn=%s'                      %(entry['distinguishedName'], entry['mail'], entry['cn']))            else:                print('%s not found'%user_id)if __name__ == '__main__':    print("test ldap3")    test_201_86()    test_lenovo_com()    print("\ntest end")

在linux下实现时报错:

>>> from ldap3 import Server,Connection>>> conn = Connection(Server('10.99.201.86', port=10389), user='uid=admin,ou=system', password='密码')>>> conn.bind()Traceback (most recent call last):  File "
", line 1, in
File "/usr/lib/python2.6/site-packages/ldap3/core/connection.py", line 530, in bind response = self.post_send_single_response(self.send('bindRequest', request, controls)) File "/usr/lib/python2.6/site-packages/ldap3/strategy/sync.py", line 124, in post_send_single_response responses, result = self.get_response(message_id) File "/usr/lib/python2.6/site-packages/ldap3/strategy/base.py", line 342, in get_response raise LDAPSessionTerminatedByServerError(self.connection.last_error)ldap3.core.exceptions.LDAPSessionTerminatedByServerError: session terminated by server>>>

问题还未解决。

转载于:https://my.oschina.net/shawnplaying/blog/1539867

你可能感兴趣的文章
百度、长沙加码自动驾驶,湖南阿波罗智行科技公司成立 ...
查看>>
10 个 Linux 中方便的 Bash 别名
查看>>
[Server] 服务器配置SSH登录邮件通知
查看>>
全新 DOCKER PALS 计划上线,带给您不一样的参会体验! ...
查看>>
Android开发之自定义View(二)
查看>>
python爬虫之微打赏(scrapy版)
查看>>
自制操作系统Antz day08——实现内核 (中) 扩展内核
查看>>
poj-1056-IMMEDIATE DECODABILITY(字典)
查看>>
阿里云容器Kubernetes监控(二) - 使用Grafana展现Pod监控数据
查看>>
区块链应用 | 不知道什么时候起,满世界都在谈区块链的事情
查看>>
小程序爆红 专家:对简单APP是巨大打击
查看>>
FarBox--另类有趣的网站服务【转】
查看>>
在非纯色背景上,叠加背景透明的BUTTON和STATIC_TEXT控件
查看>>
Distributed2:Linked Server Login 添加和删除
查看>>
海量数据处理相关面试问题
查看>>
Python-time
查看>>
Java中取两位小数
查看>>
RTX发送消息提醒实现以及注意事项
查看>>
使用 ftrace 调试 Linux 内核【转】
查看>>
唯一聚集索引上的唯一和非唯一非聚集索引
查看>>