Hi Fahar,
for a proper ssl connection (with verify-full) to a postgres server you need
proper certificates.
Get a copy of easy-rsa from here: https://github.com/OpenVPN/easy-rsa
Execute:
./easyrsa init-pki
./easyrsa build-ca nopass
./easyrsa gen-req pguser
./easyrsa gen-req pguser-pw
(when promp
I included a typo in one command, sorry:
./easyrsa gen-req pguser
This must be: ./easyrsa gen-req pguser nopass
So that the private key is not password protected, by default the tool is
asking for a pw.
Best regards,
Christian
From: Fahar Abbas
Sent: Montag, 16. Mai 2022 12:03
To: Merkel, Chr
Sure, I will try.
Thanks
On Mon, May 16, 2022 at 2:40 PM Merkel, Christian <
christian.mer...@allegion.com> wrote:
> Hi Fahar,
>
>
>
> for a proper ssl connection (with verify-full) to a postgres server you
> need proper certificates.
>
> Get a copy of easy-rsa from here: https://github.com/Open