Good Morning folks,

I have several scripts which talk to an enterprise LDAP ( MS Active Directory ). I'm finding that if I don't throttle my scripts with sleep() commands I get the following error:

Warning: ldap_bind() [function.ldap-bind]: Unable to bind to server: Can't contact LDAP server in..

What most of my scripts do is get members of Active Directory objects, then finding the members of those results.

I have a function called getMembers() that calls itself while running through the members that it has retrieved, until there are no more results.

I'm finding that I have to:

sleep(1);
getMembers();

For my bind not to fail and time out.

I'm wondering if there is a better way to hammer the crap out of ldap without being kicked out halfway through my scripts. The 1 second pause is going to cause my script to take 97 hours to process all of it's items and I'd like to cut that time by half so I can have it run over the weekend.

Thanks

EDIT --------------------------

So I found out through research that there is a 1000 record limit in LDAP and PHP has no way to page results from LDAP. Due the the way I'm querying LDAP ( 1 query at a time ) I'm able to have it count every iteration that calls to LDAP and when that counter reaches 900 or so, I have it sleep for a minute. This way I'm getting more results. I haven't been able to find a solution for the ldap paging in PHP though.

link|improve this question
Are you calling ldap_bind() in every iteration of getMembers()? If so, why? Surely you should be able to just bind to the server once at the beginning? – DaveRandom Sep 15 '11 at 15:49
I am only binding once and passing the returned variable through the functions. – Kevin Collins Sep 15 '11 at 15:50
So you are getting that error once at the beginning then, presumably? Or could you get it multiple times? – DaveRandom Sep 15 '11 at 15:52
Basically, with throttling I never get the error. But if I remove the throttling mechanism the script will run for varied periods of time, usually 1-2 mins and then throw the error, terminating the script. – Kevin Collins Sep 15 '11 at 15:54
Well surely that means that you are calling ldap_bind() more than once - judging by the fact that it is ldap_bind() that has thrown the error. Unless the script does something else for 1-2 minutes before calling ldap_bind()... I'm guessing your hitting some kind of connection limit at the server side. – DaveRandom Sep 15 '11 at 15:56
show 8 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.