개발자의 끄적끄적

[linux/wget] linux wget ssl certificate error / 리눅스 wget ssl 에러 해결방법 본문

개발/linux

[linux/wget] linux wget ssl certificate error / 리눅스 wget ssl 에러 해결방법

효벨 2023. 1. 15. 01:00
728x90
반응형

[linux/wget] linux wget ssl certificate  error / 리눅스 wget ssl 에러 해결방법

 

 

리눅스에서

 

타 사이트를 호출하려고 하는 경우에

 

wget 이나 curl 을 사용합니다.

 

그중에서 wget 을 사용해서

 

사이트 도메인을 호출하다보면 ssl 인증서 관련 오류가 발생하고는 합니다.

 

 

wget https://도메인/

우선 위와 같이 wget 을 사용했는데,

 

아래와 같이 certificate 에러가 나오면,

ERROR: cannot verify 도메인's certificate, issued by ‘/C=US/O=Let's Encrypt/CN=R3’:
Issued certificate has expired.
To connect to 도메인 insecurely, use `--no-check-certificate'.

 

아래와 같이  --no-check-certificate 옵션을 주어 호출할 수 있습니다.

--no-check-certificate

 

위 옵션을 주어 호출하면 아래와 같은 명령어가 됩니다!

wget https://도메인 --no-check-certificate

 

참고들 하세요!

반응형
Comments