Check an expiration date of PEM file on ubuntu

Updated:
Categories: Linux
Tags: #SSL #Ubuntu

Ubuntu에서 PEM 파일 만료 기간 알아보기

Ubuntu에서 특정 PEM 파일에 대한 만료 기간을 알아보고 싶을 때, openssl을 사용.

$ openssl x509 -enddate -noout -in {file path/file.pem}
notAfter=Dec 28 23:59:59 2016 GMT # 결과
no file

How to determine SSL cert expiration date from a PEM encoded certificate?

If I have the actual file and a Bash shell in Mac or Linux, how can I query the cert file for when it will expire? Not a web site, but actually the certificate file itself, assuming I have the csr...

Comments