I'm at a loss then. It should at least be logging something (failure or
otherwise) if it's attempting AD/LDAP auth. Verify domain auth settings from
the Baruwa interface and make sure it's still configured to use the correct
method of auth. If you're still not getting anything, time to enable some
verbose logging:
- Backup your settings.py file
- Verify DEBUG is still enabled in settings.py
- Modify settings.py 'LOGGING' to the following:
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'logfile': {
'class':'logging.handlers.WatchedFileHandler',
'filename':'/var/log/baruwa/debug.log'
},
'mail_admins': {
'level': 'ERROR',
'class': 'django.utils.log.AdminEmailHandler'
}
},
'loggers': {
'': {
'handlers': ['logfile'],
'level': 'DEBUG',
'propagate': True
},
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
}
}
- Attempt logging in and send output of /var/log/baruwa/debug.log
-----Original Message-----
From: [email protected] [mailto:[email protected]]
On Behalf Of Frederik Vande Rieviere
Sent: Tuesday, April 16, 2013 8:18 AM
To: Baruwa users list
Subject: Re: [Baruwa] question concerning AD authentication
> You mean nothing is logged at all, or nothing believed to be relevant?
Nothing is logged at all.
_______________________________________________
Keep Baruwa FREE - http://pledgie.com/campaigns/12056
_______________________________________________
Keep Baruwa FREE - http://pledgie.com/campaigns/12056