File format for SSL CRL file - Mailing list pgsql-docs

From Greg Smith
Subject File format for SSL CRL file
Date
Msg-id 4FF23D0F.80403@2ndquadrant.com
Whole thread Raw
Responses Re: File format for SSL CRL file  (Alvaro Herrera <alvherre@commandprompt.com>)
Re: File format for SSL CRL file  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-docs
A documentation comment came in recently about ssl-tcp.html not
specifying what format is expected for the CRL file.  Seems like
something that could be described better now that I look at it, so I'm
passing that along with just wording edits from me; this is from user
"oneironautics":

The root.crl needs to be in PEM (and not DER) format.  If a certificate
file exists but is the wrong type, you will be told it cannot find the
file when it exists, with this sort of error in the log:

LOG:  SSL certificate revocation list file "root.crl" not found,
skipping: no SSL error reported
DETAIL:  Certificates will not be checked against revocation list.

This error can be reported even though you have a root.crl file in
$PGDATA along with the private key and server/root certificates.  A
quick check using openssl revealed that the unused CRL file in this
example was indeed in DER format.  Converting the certificate to the PEM
format rectified the error:

cd $PGDATA
openssl crl -inform der -in root.crl -outform pem -out root-new.crl
mv root-new.crl root.crl

pgsql-docs by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: outdated legal notice in SGML docs?
Next
From: Alvaro Herrera
Date:
Subject: Re: File format for SSL CRL file