Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Eclipse
- 단축키
- JavaScript
- tomcat
- vscode
- context
- profile
- 줄바꿈 문자
- ssh
- import
- grep
- Mac
- netsh
- Source
- 네트워크
- resource
- IntelliJ
- Quartz
- GIT
- maVen
- bash
- plugin
- Windows
- xargs
- VirtualBox
- web.xml
- lsof
- port
- Windows 10
- find
Archives
- Today
- Total
develog
[openssl] openssl 명령어로 SSL 인증서 파일 정보 확인하기 본문
# 인증서 정보 전체 확인
openssl x509 -in STAR_mysite_com.crt -noout -text
# 시작일, 만료일 확인 (GMT 시간 주의)
openssl x509 -in STAR_mysite_com.crt -noout -startdate -enddate
# 도메인 확인
openssl x509 -in STAR_mysite_com.crt -noout -subject
# 도움말 확인
openssl x509 --help
-noout No output, just status
-text Print the certificate in text form
-startdate Set notBefore field
-enddate Set notAfter field
-subject Print subject DN
Comments