Check if SSL certificate matches the key file

To check if your certificate file matches with the key, you can use the following commands. openssl rsa -noout -modulus -in FILENAME.key openssl req -noout -modulus -in FILENAME.csr openssl x509 -noout -modulus -in FILENAME.cert If you get different output, then you files do NOT match and you will need to reissue your certificate. To make […]

Read More