Re: SSL

From: Tom Allison <tom(at)tacocat(dot)net>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: SSL
Date: 2006-11-19 16:33:47
Message-ID: 4560876B.2060906@tacocat.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Richard Broersma Jr wrote:
>> how do I override the SSL option?
>>
>> 2006-11-19 10:30:20 EST 4974 [unknown] LOG: connection received: host=127.0.0.1
>> port=32785
>> 2006-11-19 10:30:20 EST 4974 [unknown] LOG: could not accept SSL connection:
>> EOF detected
>>
>> I would prefer that 127.0.0.1 take non-SSL and all others take SSL only.
>>
>> The following doesn't work:
>>
>> host dbmail all 127.0.0.1/32 md5
>> hostssl dbmail postfix 127.0.0.1/32 reject
>> hostssl all all 192.168.1.0/24 md5
>> hostssl all all 192.168.0.0/24 md5
>>
>
> According to your error message, your client/frontend is trying to connect using ssl and your
> postgresql server is not accepting it. Also, could could configure the 127.0.0.1/32 connections
> as local instead of host. This way you will be connected throught Unix-domain sockets rather than
> tcp/ip ports and you will not need SSL support for local connections anyway.
>
> However, according the postgresql manual, for a pg server to accept ssl connections the server
> must be build with support for SSL and its pg_hba.conf file must be configured properly.
>
> http://www.postgresql.org/docs/8.2/interactive/auth-pg-hba-conf.html
>
> hostssl
> This record matches connection attempts made using TCP/IP, but only when the connection is made
> with SSL encryption.
>
> To make use of this option the server must be built with SSL support. Furthermore, SSL must be
> enabled at server start time by setting the ssl configuration parameter (see Section 16.7 for more
> information).
>

I've been using SSL connections all week long on this box.

The logs in postgresql are actually saying the opposite. the connection is
being made as an SSL and the client can't support it. I'm trying to downgrade
the connection to a nossl connection if I can't do anything else.

As for local sockets -- not supported by this particular client (postfix).

In response to

  • Re: SSL at 2006-11-19 16:30:19 from Richard Broersma Jr

Responses

  • Re: SSL at 2006-11-19 16:39:14 from Richard Broersma Jr
  • Re: SSL at 2006-11-28 02:52:00 from Jim Nasby

Browse pgsql-novice by date

  From Date Subject
Next Message Richard Broersma Jr 2006-11-19 16:39:14 Re: SSL
Previous Message Richard Broersma Jr 2006-11-19 16:30:19 Re: SSL