Re: SSL

Поиск
Список
Период
Сортировка
От Tom Allison
Тема Re: SSL
Дата
Msg-id 4560876B.2060906@tacocat.net
обсуждение исходный текст
Ответ на Re: SSL  (Richard Broersma Jr <rabroersma@yahoo.com>)
Ответы Re: SSL  (Richard Broersma Jr <rabroersma@yahoo.com>)
Re: SSL  (Jim Nasby <decibel@decibel.org>)
Список 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).

В списке pgsql-novice по дате отправления:

Предыдущее
От: Richard Broersma Jr
Дата:
Сообщение: Re: SSL
Следующее
От: Richard Broersma Jr
Дата:
Сообщение: Re: SSL