Is it possible to use LDAP authentication with Liquibase?

If not, how have others solved the problem of automating changes to production database schemas using Liquibase (yet still keeping the database credentials secure)?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

LDAP is used for server-side authentication. Not all databases support it, for example MySQL only supports it in it's Enterprise version.

Securing the credentials, used by clients like liquibase, falls into two categories:

  1. Protecting data in transit
  2. Protecting credentials at rest

To protect credentials in transit, I'd recommend using a JDBC driver which supports SSL. Some JDBC drivers support this feature, for example MySQL. Another approach is to tunnel the JDBC traffic over a SSH tunnel.

Protecting credentials at rest (in configuration files) is more difficult and depends on how you plan to invoke liquibase. If you're using ANT, I'd suggest using the answer to this question on how to read encrypted property files.

link|improve this answer
Thanks. Very useful link about using encrypted property files with Ant. – Synesso Sep 28 '11 at 2:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.