Como integrar o rastreador de solicitações 4.0.8 com o servidor do diretório ativo 2008

2

Eu instalei o request tracker v 4.0.8 e tudo está funcionando. Agora estou tentando integrá-lo ao Active Directory 2008. Usei este DOC: link

Mas incapaz de fazê-lo funcionar. O weblogin RT nem verifica o servidor AD. Não consigo encontrar nenhum log relacionado a ele. Eu já vi uma pergunta aqui no serverfault sobre o diretório ativo e o Rt, mas foi para a versão antiga e estou usando uma nova versão.

    
por FELDAP 01.01.2013 / 12:43

1 resposta

1

tente isso. no seu lugar de configuração do apache:

<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>

e em RT_SiteConfig.pm add:

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

reinicie o apache e espere pelo melhor:]

    
por 01.01.2013 / 14:21