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
- 단축키
- lsof
- 네트워크
- Windows 10
- Mac
- VirtualBox
- resource
- import
- bash
- Quartz
- IntelliJ
- netsh
- 줄바꿈 문자
- tomcat
- context
- Windows
- profile
- maVen
- GIT
- web.xml
- ssh
- port
- plugin
- grep
- xargs
- find
- JavaScript
- vscode
- Eclipse
- Source
Archives
- Today
- Total
develog
[bash] curl ssl 인증서 오류 무시하기 본문
일반 사용시 ssl 인증서를 확인한다
$ curl https://www.mysite.com/
curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here: https://curl.haxx.se/docs/sslcerts.html
curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.
-k 옵션은 ssl 인증서 확인을 무시한다
-k : This option makes curl skip the verification step and proceed without checking.
$ curl -k https://www.mysite.com/
mysite
Comments