查看网站ssl证书过期命令
二、根据k8s的secert查看。一、根据证书文件查看。
·
一、根据证书文件查看
#echo 证书有效期:$(( $(( $(date -d "`cat zhengshu.pem| openssl x509 -noout -dates|grep notAfter|awk -F "=" '{print $2}'`" +%s ) - $(date +%s) ))/86400 )) 天
证书有效期:141 天
二、根据k8s的secert查看
# echo 证书有效期:$(( $(( $(date -d "`kubectl get secrets zhengshu -n test -o jsonpath='{.data.tls\.crt}'|base64 -d | openssl x509 -noout -dates|grep notAfter|awk -F "=" '{print $2}'`" +%s ) - $(date +%s) ))/86400 )) 天
证书有效期:374 天
三、根据网址查看
# echo 证书剩余有效期:$(( $(( $(date -d "`echo | openssl s_client -servername www.baidu.com -connect www.baidu.com:443 2>/dev/null| openssl x509 -noout -enddate 2>/dev/null|awk -F '=' '{print $2}'`" +%s ) - $(date +%s) ))/86400 )) 天
证书剩余有效期:353 天
更多推荐
已为社区贡献4条内容
所有评论(0)