Configure multiple active directory servers

Moderator: crythias

Locked
chaitanyacda
Znuny newbie
Posts: 33
Joined: 26 Feb 2013, 13:23
Znuny Version: 3.1.4
Real Name: Chaitanya Ambaselkar
Company: InfoCepts

Configure multiple active directory servers

Post by chaitanyacda »

Greetings all,

I have an OTRS installation with customer and agent login configured with Active Directory authentication working fine. But we have a PDC-ADC setup and I would like to configure OTRS to authenticate with both the servers so that even if my PDC is down, OTRS does not stop working.
Is there a way to configure OTRS for two active directory servers so that it talks to the one which is online and available?

In addition to this, we have had issues where OTRS failed to download certain emails and create tickets even though the tickets were visible in the mailbox. The issue was not solved even by forcing OTRS to fetch the emails. I am not sure why this happened but it was issuing the information that no more emails were available for download.

Any help would be highly appreciated.

Thanks and Regards
Chaitanya A.
OTRS 3.14 on Cent OS 6 64bit with MySQL
Wolfgangf
Znuny ninja
Posts: 1029
Joined: 13 Apr 2009, 12:26
Znuny Version: 6.0.13
Real Name: Wolfgang Fürtbauer
Company: PBS Logitek GmbH
Location: Pinsdorf

Re: Configure multiple active directory servers

Post by Wolfgangf »

(multible directory servers)
i do it like this

Code: Select all

my @ldaphosts = ('host1:3268', 'host2:3268');
...
$Self->{'AuthSyncModule'} = 'Kernel::System::Auth::Sync::LDAP';
$Self->{'AuthSyncModule::LDAP::Host'} = \@ldaphosts;
...
    $Self->{CustomerUser} = {
        Name => 'Active Directory',
        Module => 'Kernel::System::CustomerUser::LDAP',
        Params => {
            Host => \@ldaphosts,
 Params => {
                port => 3268,
                timeout => 10,
                async => 0,
                version => 3,
            },

...
Produktiv:
OTRS 6.0.13/ ITSM 6.0.13
OS: SUSE Linux (SLES 12, Leap), MySql 5.5.x, 5.6.x
Windows 2012 AD Integration (agents and customers), Nagios integration (incidents, CMDB), Survey, TimeAccounting
chaitanyacda
Znuny newbie
Posts: 33
Joined: 26 Feb 2013, 13:23
Znuny Version: 3.1.4
Real Name: Chaitanya Ambaselkar
Company: InfoCepts

Re: Configure multiple active directory servers

Post by chaitanyacda »

Thank you for your reply. I have not yet got a chance to check on the given configuration. I would like to test the configuration on a testbed first and then implement so that if I miss out or misconfigure anything, my production environment is not affected. Will keep you posted about my success / failures in attaining the desired outcome.

Thanks and Regards
Chaitanya A.
OTRS 3.14 on Cent OS 6 64bit with MySQL
Locked