By RvanLaar
I would prefer to use certificates for managed databases and Apps. I can download the ca_certificate from the managed database portal. But I don’t see the private key.
Is there a way to generate client certificates for postgres?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi @RvanLaar,
To generate Client certificates for Postgres managed database, Make sure you have OpenSSL installed on your operating system.OpenSSL will be used to generate client-side public/private key pairs.
Here is how to use the OpenSSL to generate the client public/private key pairs
openssl req -x509 -newkey rsa:2048 -keyout client-key.pem -out client-cert.pem -days 3650 -nodes -subj '/CN=localhost'
I hope this helps!
Best Regards, Rajkishore
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.