Skip to content

Commit a398b83

Browse files
authored
Update concepts-networking-ssl-tls.md
We found that current "Microsoft RSA Root Certificate Authority 2017" is certificate file, so we would need to add extra "-inform DER" during converting certificate file to PEM file. * The DER format is the DER encoding of the certificate and PEM is the base64 encoding of the DER encoding with header and footer lines added. The default format is PEM.
1 parent deb54c7 commit a398b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/postgresql/flexible-server/concepts-networking-ssl-tls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Microsoft RSA Root Certificate Authority 2017 https://www.microsoft.com/pkiops/
128128
To import certificates to client certificate stores you may have to **convert certificate .crt files to .pem format**, after downloading certificate files from URIs above. You can use OpenSSL utility to do these file conversions, as shown in example below:
129129

130130
```powershell
131-
openssl x509 -in certificate.crt -out certificate.pem -outform PEM
131+
openssl x509 -inform DER -in certificate.crt -out certificate.pem -outform PEM
132132
```
133133

134134
**Detailed information on updating client applications certificate stores with new Root CA certificates has been documented in this [how-to document](../flexible-server/how-to-update-client-certificates-java.md)**.

0 commit comments

Comments
 (0)