Skip to content

Issuing SSL Server Certificate with OpenSSL

Endi S. Dewata edited this page Oct 28, 2020 · 2 revisions

Issuing SSL Server Certificate with OpenSSL

To issue an SSL Server Certificate with an existing CA certificate and key:

$ openssl x509 \
    -req \
    -CA ca.crt \
    -CAkey ca.key \
    -CAcreateserial \
    -in sslserver.csr \
    -out sslserver.crt

See Also

Clone this wiki locally