2011-01-09から1日間の記事一覧

apacheに設定されているSSL証明書のファイル名を表示

# httpd -t -DDUMP_CERTS

SSLの証明書期限をCLIで確認する

SSLなんだからopenssl使えばわかるよねっていう。 openssl $ openssl s_client -connect ssl.example.com:443 2>&1 < /dev/null | openssl x509 -enddate | grep ^notAfter notAfter=Oct 1 23:59:59 2011 GMTopensslで接続しにいくので、remote host の状態…