Re: SQL schema to LDAP schema ?

From: "scott(dot)marlowe" <scott(dot)marlowe(at)ihs(dot)com>
To: Jerome Alet <alet(at)librelogiciel(dot)com>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: SQL schema to LDAP schema ?
Date: 2003-04-28 15:01:13
Message-ID: Pine.LNX.4.33.0304280857290.2646-100000@css120.ihs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sat, 26 Apr 2003, Jerome Alet wrote:

> Hi,
>
> I've implemented a tool which actually uses PostgreSQL as the
> backend, but some people ask me for an LDAP backend too.
>
> Unfortunately I don't know how to create and LDAP directory, so
> I wondered if any of you know of a tool which would take a
> set of PostgreSQL commands or an existing PostgreSQL database
> and would dump the SQL schema in a form reuseable to
> create an LDAP directory with the same functionnalities.
>
> I've already read some doc on creating an LDAP schema from
> an existing realtionnal database, but it is actually still
> very obscure to me...
>
> Any link or help appreciated.

We pump a Postgresql database to produce LDAP records and then insert them
directly into the LDAP server.

Basically, LDAP is a non-relational database, it is hierarchical (sp?) if
I remember correctly. So, there's often no direct mapping from Postgresql
to LDAP for everything you want. Also, the schema in LDAP is well
defined, and much of it is pre-defined before you get it. You might find
yourself needing to create your own schema objects, not a simple task in
LDAP, but not as hard as you may have been led to believe.

One thing to look at is OpenLDAP 2.1, which now officially supports
Postgresql as it's official SQL backend. If you got that up and running,
it might give a nice window into the way OpenLDAP uses Postgresql as a
datastore and offer up some clues on how to do some of this.

If you just need a script to grab data from Postgresql and get it into
LDAP, I can help, but all our code to do that is in PHP, so you'll either
need to set up that language or convert it into Perl or something a little
more ubiquitous.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message scott.marlowe 2003-04-28 15:04:55 Re: why restoring a dump file is sooo slow
Previous Message Tom Lane 2003-04-28 14:59:31 Re: Estimating space required for indexes