views:

33

answers:

1

I'm trying to set up MovableType 4.34 using a Postgres database, and I'm getting the following (unhelpful) error message:

Connection error: authentication method 7 not supported

The database server doesn't support SSL connections, so I suspect that's to blame -- but I can't be sure (what is "authentication method 7" ?), and at any rate it's not clear to me how to see if MT is trying to use SSL connections for the database or not. Any ideas?

A: 

Did you turn on SSL in postgresql.conf? Just check it using this query:

SHOW ssl;

You have to check pg_hba.conf as well, hostssl needs a proper setting.

Frank Heikens
Unfortunately, I don't have access to the Postgres configuration, and the sysadmin in charge of the webserver is somewhat...unwilling to make security-related changes.
Doches
@Doches: Enabling SSL would be tightening security, not loosening it.
Ether