Modify

Opened 15 years ago

Last modified 6 years ago

#5647 new defect

ActiveDirectory authentication for Trac

Reported by: Ajeet S Raina Owned by: anybody
Priority: normal Component: Request-a-Hack
Severity: normal Keywords: activedirectory Audit
Cc: Trac Release: 0.11

Description

I have SVN Running and integrated to Trac. As of now, Developers login through WebDAV through password created and authenticated through htpasswd. Now I can see all the projects in Trac. But I want all the users login through Active Directory Server and whenever they log a call one can search the name through Ctrl + K or else method.(whchever preferrable).

Attachments (0)

Change History (5)

comment:1 Changed 15 years ago by Ryan J Ollos

Component: SELECT A HACKRequest-a-Hack
Owner: changed from anonymous to anybody

comment:2 Changed 15 years ago by Ryan J Ollos

Summary: Trac and Active Directory Server ?ActiveDirectory authentication for Trac

Attempting to rename this to something more descriptive of your request.

comment:3 Changed 14 years ago by Russ Tyndall

We use apache2 and modldap to achieve this:

   <LocationMatch "(^/$)|(/[^/]+/login)">
       AuthType Basic
 
       # LDAP Authentication & Authorization is final; do not check other databases
       AuthzLDAPAuthoritative on
       AuthBasicProvider ldap
 
       # Active Directory requires an authenticating DN to access records
       AuthLDAPBindDN "<Your bind here>"
       # This is the password for the AuthLDAPBindDN user in Active Directory
       AuthLDAPBindPassword <your pass here>
 
       AuthLDAPURL "<your url here>"

      AuthName "Trac."
      # trac handles authorization we only need to authenticate
      AuthzLDAPAuthoritative Off
      Require valid-user
   </LocationMatch>

comment:4 Changed 13 years ago by johnrockfellerz

Keywords: Active directory Audit added

ADAudit Plus is a valuable security tool that will help you be compliant with all the IT regulatory acts. With this tool, you can monitor user activity such as logon, file access, etc. A configurable alert system warns you of potential threats.

http://www.manageengine.com/products/active-directory-audit/

comment:5 Changed 6 years ago by figaro

Keywords: activedirectory added; Active directory removed

Modify Ticket

Change Properties
Set your email in Preferences
Action
as new The owner will remain anybody.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.