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
- Windows
- 줄바꿈 문자
- ssh
- import
- maVen
- JavaScript
- IntelliJ
- Windows 10
- Eclipse
- xargs
- profile
- VirtualBox
- Quartz
- netsh
- Mac
- Source
- 네트워크
- find
- 단축키
- bash
- plugin
- web.xml
- vscode
- tomcat
- lsof
- context
- GIT
- grep
- port
- resource
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