Re: Linux Postgres authentication against active directory

From: "Magnus Hagander" <mha(at)sollentuna(dot)net>
To: "Ronzani Dario" <dario(dot)ronzani(at)oword(dot)it>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: Linux Postgres authentication against active directory
Date: 2005-08-12 10:56:11
Message-ID: 6BCB9D8A16AC4241919521715F4D8BCE6C7896@algol.sollentuna.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> Hi to all,
>
> Actually I try to authenticate my Linux Postgres installation
> against Active Directory, I find 3 solution to use:
>
> 1) LDAP
> 2) Pam and Kerberos
> 3) Kerberos alone

(3) is the one I've been using, and it works very well. I've been
working on a HOWTO, but it' snot done yet.

Note that if your clients are on win32, you need at least version 8.0.2.

> For the 2 kerberos solution I don't find to much
> documentation, I try to compile postgres with kerberos using
> this configure flag:
>
> --with-krb5=/usr/
> --with-includes=/usr/include/
> --with-libraries=/usr/lib/
>
> My kerberos installation is in
> /usr/bin and /usr/sbin for the binary
> /usr/lib/ libkrb5.* e
> libk5crypto.so
> and libkadm5
> /usr/include/ krb5.h heaser file
>
> But seems that I miss something because when I put the krb5
> word in the pg_hba.conf and I try to connect the system give
> me the error:

For AD to do proper interop, the SPN has to be in uppercase. For this
you need to recompile postgresql using --with-krbsrvnam=POSTGRES on both
client and server. (You will be able to change this at runtime in 8.1)

Naturally you will have to recreate the service account in AD with the
proper SPN.

//Magnus

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Sean Davis 2005-08-12 11:17:13 Analyze and number of rows
Previous Message Ronzani Dario 2005-08-12 10:33:23 Linux Postgres authentication against active directory