openssl: command to show certificate infos

Did you ever was on a server, but did not remember, what the certificate is for?
This commit is contained in:
Jörg Thalheim 2013-10-28 13:16:01 +01:00
parent c6441524b0
commit b848b2a607
1 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,12 @@ openssl req -new -key server.key -out server.csr
# To sign a certificate using a private key and CSR:
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
# To show certificate information for a certificate signing request
openssl req -text -noout -in server.csr
# To show certificate information for generated certificate
openssl x509 -text -noout -in server.crt
# (The above commands may be run in sequence to generate a self-signed SSL certificate.)
# To view certificate expiration: