# 명령어를 이렇게 넣으면
echo | openssl s_client -servername example.com -connect example.com:443 2>/dev/null | openssl x509 -noout -enddate
# 이런 출력결과를 확인가능
notAfter=Sep 4 23:59:59 2024 GMT
# N차 도메인이고 *.example.com 이라면 그냥 전부 입력하면 됨
echo | openssl s_client -servername my_test.example.com -connect my_test.example.com:443 2>/dev/null | openssl x509 -noout -enddate
'Linux' 카테고리의 다른 글
[Linux] logrotate 설정에서 hourly가 동작하지 않을 때 (0) | 2024.07.25 |
---|---|
[Linux] curl: (35) error:1425F102:SSL routines:ssl_choose_client_version:unsupported protocol (0) | 2024.05.23 |
[Linux] tuned 프로필 상속받아 원하는 값만 변경, 적용 (0) | 2024.03.19 |
[Linux] 원격 서버간 파일 diff (0) | 2024.03.19 |
[Linux] bash 스크립트를 이용해 다수 서버간 방화벽 개방 여부 확인 (0) | 2024.03.19 |