On Sep 24, 4:39 am, Jashugan <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I am having a problem when using python-ldap with Apache. I added an
> authentication backend based on ldapauth.py, and it works fine when
> running from the Django server. However, when I use Apache I get the
> following error in the Apache error.log:
>
> child pid 2941 exit signal Bus error (10)
>
> It seems to be the following line that causes the problem:
>
> l.simple_bind_s(self.settings['LDAP_PREBINDDN'],
>     self.settings['LDAP_PREBINDPW'])
>
> I have tried the following without any luck:
>
> + changing from a synchronous bind to a asynchronous bind
> + setting the host by IP address (I thought it may have been due to
> some kind of domain problem)
>
> Has anyone experienced anything like this? Any suggestions on where to
> begin troubleshooting?

The problem is most like because some other Apache module, eg. PHP or
mod_auth_ldap, is loading an incompatible version/variant of LDAP
client libraries before the Python ldap module does.

Thus, check what versions of LDAP client libraries Python ldap module
is compiled against and then also look at what PHP or other Apache
modules are using.

To really get to the problem, you may need to start up Apache in
single process mode and run it in a debugger. For details see:

http://code.google.com/p/modwsgi/wiki/DebuggingTechniques#Debugging_Crashes_With_GDB

BTW, you don't say whether you are using mod_python or mod_wsgi.

Graham
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to