2

I have installed request tracker v 4.0.8 and everything is working. Now I'm trying to integrate it with Active Directory 2008. I used this DOC: http://requesttracker.wikia.com/wiki/CentOS5InstallPlusSome

But unable to get it working. The RT weblogin doesn't even check for the AD server. I can't find any logs regarding to it. I have already seen a question here in serverfault regarding active directory and Rt, but it was for old version and I'm using a new version.

FELDAP
  • 989

1 Answers1

1

try this. in your apache config place:

<Location /rt>
        AddDefaultCharset UTF-8
        SetHandler perl-script
        PerlResponseHandler RT::Mason
        Require valid-user
        AuthType Basic
        AuthName "RT Server"
        AuthBasicProvider ldap
        AuthzLDAPAuthoritative Off
        AuthLDAPBindDN "domainName\someExistingADUser"
        AuthLDAPBindPassword passwordForThatUser
        AuthLDAPURL ldap://address.of.your.domain.controller:389/ou=Users,dc=some,dc=name,dc=ofyourdomain?sAMAccountName?sub?(objectClass=*)
</Location>
<LocationMatch "/rt/NoAuth">
        Satisfy Any
        Allow from all
</LocationMatch>
<LocationMatch "/rt//REST/1.0/NoAuth">
        Satisfy Any
        Allow from all
</LocationMatch>

and in RT_SiteConfig.pm add:

Set($WebExternalAuth , 1);
Set($WebFallbackToInternalAuth , 1);
Set($WebExternalAuto , 1);

restart apache and hope for the best :]

pQd
  • 30,537