[EMAIL PROTECTED] LDAP authentication - search depth

2008-09-17 Thread parminder gupta
Hello, I am trying to get my Apache/Subversion server running on Linux authenticate users on Windows Active Directory using LDAP. Server information is as below: Apache: 2.2.3 Subversion: 1.5.1 Linux: CentOS 5.2 (kernel 2.6.18-92.1.10.el5) The LDAP structure of my company looks like below: DC=ex

RE: [EMAIL PROTECTED] LDAP authentication against an Active Directory server

2008-05-20 Thread David Dyer-Bennet
Eric Covener [mailto:[EMAIL PROTECTED] wrote: > On Mon, May 19, 2008 at 7:14 PM, David Dyer-Bennet > <[EMAIL PROTECTED]> wrote: > > > > > Then I see *another* search for the same user record, which > > fails with > > an error saying a bind must be done first ("errorMessage: : > > LdapEr

Re: [EMAIL PROTECTED] LDAP authentication against an Active Directory server

2008-05-19 Thread Eric Covener
On Mon, May 19, 2008 at 7:14 PM, David Dyer-Bennet <[EMAIL PROTECTED]> wrote: > > Then I see *another* search for the same user record, which fails with > an error saying a bind must be done first ("errorMessage: : > LdapErr: DSID-0C090627, comment: In order to perform this operation a > s

[EMAIL PROTECTED] LDAP authentication against an Active Directory server

2008-05-19 Thread David Dyer-Bennet
I seem to have a somewhat different problem than the ones I find all over forums and archives (needing an address to bind to to search for the user). I'm running Apache httpd 2.0.52 on CENTOS 4.6 (Final). The Active Directory server is on Windows 2003 Server. I'm trying to authenticate acces

Re: [EMAIL PROTECTED] ldap authentication

2008-05-09 Thread syed mehdi
Hi Krist, i tried to access user name (who have authenticated via LDAP) using the variable REMOTE_USER in python like: if request.environ.has_key('REMOTE_USER'): name = request.environ['REMOTE_USER'] print name but it gave an exception, any clue by any other user also? Thanks & Regards

Re: [EMAIL PROTECTED] ldap authentication

2008-05-09 Thread syed mehdi
i tried to access user name (who have authenticated via LDAP) using the variable REMOTE_USER in python like: print REMOTE_USER but it gave an exception Thanks & Regards syed On Wed, Apr 23, 2008 at 5:15 PM, Krist van Besien <[EMAIL PROTECTED]> wrote: > On Wed, Apr 23, 2008 at 7:00 AM, syed mehdi

Re: [EMAIL PROTECTED] ldap authentication

2008-04-23 Thread Danie Qian
- Original Message - From: "Krist van Besien" <[EMAIL PROTECTED]> To: Sent: Wednesday, April 23, 2008 7:45 AM Subject: Re: [EMAIL PROTECTED] ldap authentication On Wed, Apr 23, 2008 at 7:00 AM, syed mehdi <[EMAIL PROTECTED]> wrote: When a user authenticates us

Re: [EMAIL PROTECTED] ldap authentication

2008-04-23 Thread Krist van Besien
On Wed, Apr 23, 2008 at 7:00 AM, syed mehdi <[EMAIL PROTECTED]> wrote: > When a user authenticates using LDAP user/paswd to execute a script placed > at server, then how can the script determine which user have executed it > (after authentication). By this we can keep track of users making changes

Re: [EMAIL PROTECTED] ldap authentication

2008-04-23 Thread syed mehdi
ok if i have to do it on application side, then how can i determine which user have authenticated. regards syed On Wed, Apr 23, 2008 at 1:24 PM, Mohammed Salih <[EMAIL PROTECTED]> wrote: > Why don't you do this in Application side, Where you can have better > control over what you do. > > Cheers

Re: [EMAIL PROTECTED] ldap authentication

2008-04-23 Thread Mohammed Salih
Why don't you do this in Application side, Where you can have better control over what you do. Cheers Salih On Wed, Apr 23, 2008 at 9:00 AM, syed mehdi <[EMAIL PROTECTED]> wrote: > When a user authenticates using LDAP user/paswd to execute a script placed > at server, then how can the script dete

[EMAIL PROTECTED] ldap authentication

2008-04-22 Thread syed mehdi
When a user authenticates using LDAP user/paswd to execute a script placed at server, then how can the script determine which user have executed it (after authentication). By this we can keep track of users making changes in database otherwise any user can make changes anywhere and it will be in a

Re: [EMAIL PROTECTED] ldap authentication not working

2007-10-06 Thread Krist van Besien
On 10/4/07, Tom Hart <[EMAIL PROTECTED]> wrote: > I'm beginning to believe that the BindDN and BindPassword are incorrect, > because it doesn't seem to matter what I type in there, I get the same > results. I'm pretty sure I have the DN correct though. > > We have an apache service account (account

Re: [EMAIL PROTECTED] ldap authentication not working

2007-10-04 Thread Tom Hart
It works! For the record here's my final setup. I'm using Apache 2.2.x and mod_authnz_ldap with Windows 2003 Server Options Indexes FollowSymLinks AllowOverride None Order deny,allow AuthType Basic AuthName "Testing LDAP Auth" AuthBasicProvider ldap #AuthLDAPAuthorita

Re: [EMAIL PROTECTED] ldap authentication not working

2007-10-04 Thread Tom Hart
I'm beginning to believe that the BindDN and BindPassword are incorrect, because it doesn't seem to matter what I type in there, I get the same results. I'm pretty sure I have the DN correct though. We have an apache service account (account name is cu_apache) in the Users container under our

Re: [EMAIL PROTECTED] ldap authentication not working

2007-10-04 Thread Tom Hart
Re: [EMAIL PROTECTED] ldap authentication not working As a follow-up I realized ldap-user is used to specifiy a certain user aka ldap-user "Joe Smith". However based on the fact that I'm not getting prompted for a u/p, and AuthLDAPAuthoritative is failing, I believe my problem lies deeper t

Re: [EMAIL PROTECTED] ldap authentication not working

2007-10-04 Thread Tom Hart
Ok, I'm getting a bit closer. Here's what I have now. Options Indexes FollowSymLinks AllowOverride None Order deny,allow AuthType Basic AuthName "Testing LDAP Auth" AuthBasicProvider ldap #AuthLDAPAuthoritative on - still doesn't let apache start AuthLDAPUrl "ldap:/

Re: [EMAIL PROTECTED] ldap authentication not working

2007-10-04 Thread Peter Milanese
What version are you running? Are you using mod_authnz_ldap? - Original Message From: Tom Hart <[EMAIL PROTECTED]> To: users@httpd.apache.org Sent: Thursday, October 4, 2007 10:40:16 AM Subject: Re: [EMAIL PROTECTED] ldap authentication not working As a follow-up I realized lda

Re: [EMAIL PROTECTED] ldap authentication not working

2007-10-04 Thread Tom Hart
As a follow-up I realized ldap-user is used to specifiy a certain user aka ldap-user "Joe Smith". However based on the fact that I'm not getting prompted for a u/p, and AuthLDAPAuthoritative is failing, I believe my problem lies deeper than that. I could be wrong of course, just trying to narro

[EMAIL PROTECTED] ldap authentication not working

2007-10-04 Thread Tom Hart
Hi everybody. Thanks to the help of this list I managed to get the auth_ldap module loaded, but now I'm having a little trouble bringing this project to full fruition. I'm not sure which part of this is failing, and unfortunately I can't seem to find where I can see any type of log info about

[EMAIL PROTECTED] LDAP authentication against AD

2007-03-15 Thread Dave Hartburn
Hi, Can anyone advise on a problem I have authenticating Apache on Linux against an Active Directory server? I can not authenticate for all users in the domain, only users in specific branches. I've found a few resources on line that suggest the following config is correct: LoadModule ldap_module

RE: [EMAIL PROTECTED] LDAP Authentication & Registration

2007-02-14 Thread Mark Lavi
lto:[EMAIL PROTECTED] Sent: Tuesday, February 13, 2007 9:35 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] LDAP Authentication & Registration OK do you all know of any application where a user can do a self-registration and it will create their account within the LDAP server? Thanks,

[EMAIL PROTECTED] LDAP Authentication & Registration

2007-02-13 Thread Strader, William A.
OK do you all know of any application where a user can do a self-registration and it will create their account within the LDAP server? Thanks, Billy Strader WebPool WebPool Pager: 865-417-5622 Work: 865-425-5178 Pager: 865-417-5012 ---

Re: [EMAIL PROTECTED] LDAP Authentication error

2006-10-24 Thread Om
Thanks for the help. My problem was solved, when i have added the directive "AuthzLDAPAuthoritative off" Now i am able to authenticate with LDAP. Is it mandatory to add the "AuthBasicProvider ldap" Thanks, Om. On 24-Oct-06, at 7:02 PM, Kenneth Svee wrote: [ Om ] Hi, I have installed apac

Re: [EMAIL PROTECTED] LDAP Authentication error

2006-10-24 Thread Kenneth Svee
[ Om ] > Hi, > I have installed apache 2.2.2 in my local machine. I am using in > built LDAP server on a MAC OS X server. I want to provide access to > few resources on the webserver authenticated against LDAP. mod_ldap > and mod_authnz_ldap modules are enabled in apache. > > Below is the Authoriz

[EMAIL PROTECTED] LDAP Authentication error

2006-10-24 Thread Om
Hi, I have installed apache 2.2.2 in my local machine. I am using in built LDAP server on a MAC OS X server. I want to provide access to few resources on the webserver authenticated against LDAP. mod_ldap and mod_authnz_ldap modules are enabled in apache. Below is the Authorization code that i

RE: [EMAIL PROTECTED] LDAP authentication to dav folder

2006-08-29 Thread Craig Jackson
-Original Message- From: Craig Jackson [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 5:02 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] LDAP authentication to dav folder Samba with ldap backend authenticates samba users. An ldif example for a user looks like this

[EMAIL PROTECTED] LDAP authentication to dav folder

2006-08-28 Thread Craig Jackson
Samba with ldap backend authenticates samba users. An ldif example for a user looks like this: dn: uid=craig,ou=users,dc=abbott-simses,dc=com uid: craig sambaSID: sid id sambaPrimaryGroupSID: grp id displayName: Samba User objectClass: sambaSamAccount objectClass: account structuralObjectClass: ac

[EMAIL PROTECTED] LDAP Authentication Failure Gives 500 Error

2006-05-18 Thread Tribley William-cwt010
Apache 2.2.2 on Windows I only want to authenticate using LDAP. I have configured the server and it properly authenticates using LDAP. Configuration of the directory and the list of all installed modules is below. The issue comes when the user does not enter the proper credentials. Not differentiat

[EMAIL PROTECTED] LDAP Authentication with mod_authnz_ldap

2006-02-03 Thread Dave Bell
Hi guys :) I'm running TWiki and using a .htaccess file to control access to files. Basically I'm using mod_authnz_ldap and Basic Authentication to authenticate users with our internal directory server. Here is my .htaccess file: SetHandler cgi-script AuthType Basic AuthBasicProvider ldap Auth

RE: [EMAIL PROTECTED] LDAP Authentication and Subgroups/Nested groups

2005-11-28 Thread Jason Martens
On Mon, 2005-11-28 at 03:04 -0600, Alun Coppack wrote: > Thanks for the reply Owen. No I am not nesting realms, only trying to > place > LDAP groups inside other LDAP groups. If anyone can point me in > another > direction that I request some help it would be greatly appreciated. > I can't remembe

RE: [EMAIL PROTECTED] LDAP Authentication and Subgroups/Nested groups

2005-11-28 Thread Alun Coppack
PROTECTED] Sent: 28 November 2005 08:16 To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] LDAP Authentication and Subgroups/Nested groups > -Original Message- > From: Alun Coppack [mailto:[EMAIL PROTECTED] > Sent: Donnerstag, 24. November 2005 15:03 > To: users@http

RE: [EMAIL PROTECTED] LDAP Authentication and Subgroups/Nested groups

2005-11-28 Thread Boyle Owen
> -Original Message- > From: Alun Coppack [mailto:[EMAIL PROTECTED] > Sent: Donnerstag, 24. November 2005 15:03 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] LDAP Authentication and Subgroups/Nested groups caveat: I've never used mod_auth_ldap but from a qu

[EMAIL PROTECTED] LDAP Authentication and Subgroups/Nested groups

2005-11-24 Thread Alun Coppack
I am running Apache 2.0.50 with mod_auth_ldap When I use the 'require group' directive, members of nested groups do not seem to be recognised. I am trying to authenticate using: 'require group cn=Authenticated_users,ou=Roles,dc=sample,dc=com' This group, (Authenticated_Users) has a group called