Re: SSL Connections

From: "Oliver Elphick" <olly(at)lfix(dot)co(dot)uk>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Re: SSL Connections
Date: 2000-12-21 16:49:29
Message-ID: 200012211649.eBLGnUP11047@linda.lfix.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Matthew Kirkwood wrote:
>On Wed, 20 Dec 2000, Oliver Elphick wrote:
>
>> To create a quick self-signed certificate, use the CA.pl script
>> included in OpenSSL:
...
>Or you can do it manually:
>
>openssl req -new -text -out cert.req (you will have to enter a password)
>mv privkey.pem cert.pem.pw
>openssl rsa -in cert.pem.pw -out cert.pem (this removes the password)
>openssl req -x509 -in cert.req -text -key cert.pem -out cert.cert

then

cp cert.pem $PGDATA/server.key
cp cert.cert $PGDATA/server.crt

Thank you; this works.

I attach a documentation patch.

Attachment Content-Type Size
ol text/plain 3.0 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Alex Pilosov 2000-12-21 17:10:58 Re: CIDR output format
Previous Message Oleg Bartunov 2000-12-21 16:48:50 Re: Re: equal operator for _int4 (array of int4)