SSO LDAP and DB together

Moderator: crythias

Locked
Toljio
Znuny newbie
Posts: 1
Joined: 17 Jun 2016, 17:39
Znuny Version: OTRS 4
Real Name: Anatoly

SSO LDAP and DB together

Post by Toljio »

Hello!

Can somebody explain me how it possible to make SSO and local OTRS DB work together? In order to automatically logged user can LogOut and then LogIn as another user.

1st case Only AD and DB works (but no SSO):
$Self->{'AuthModule1'} = 'Kernel::System::Auth::HTTPBasicAuth';
$Self->{'AuthModule::HTTPBasicAuth::ReplaceRegExp1'} ='@DOMAIN.RU';
$Self->{'AuthModule2'} = 'Kernel::System::Auth::LDAP';
....
$Self->{'AuthModule3'} = 'Kernel::System::Auth::DB';


2nd case Only SSO works, but no local DB:
$Self->{'AuthModule'} = 'Kernel::System::Auth::HTTPBasicAuth';
$Self->{'AuthModule::HTTPBasicAuth::ReplaceRegExp'} ='@DOMAIN.RU';
$Self->{'AuthModule1'} = 'Kernel::System::Auth::LDAP';
....
$Self->{'AuthModule2'} = 'Kernel::System::Auth::DB';



Thanks a lot!
Locked