Verify SSL certificate using OpenSSL
Tuesday, March 11th, 2014 - 4:14 pm - System Administration
Use this command to verify the SSL certificate for the domain www.somedomain.com
1 | openssl s_client -showcerts -connect www.somedomain.com:443 |
If the certificate is correctly installed the result should contain at the end:
1 | Verify return code: 0 (ok) |
That’s it