리눅스 wget
명령어를 사용하여 웹상의 특정 파일을 다운로드하기 위해 다음과 같이 사용할 수 있습니다. (포스팅을 위해 example.com/test.txt
가 존재한다고 가정했습니다.)
wget https://example.com/test.txt
그랬더니 다음과 같이 에러가 발생하게 됩니다.
--2020-08-10 05:09:01-- https://example.com/test.txt Resolving example.com (example.com)... 93.184.216.34 Connecting to example.com (example.com)|93.184.216.34|:443... connected. ERROR: The certificate of ‘example.com’ is not trusted. ERROR: The certificate of ‘example.com’ has expired.
이는 https 프로토콜로 접속 시 해당 웹 서버의 인증서가 만료되었거나 보안상의 이슈로 인해 신뢰되지 않은 인증서로 표시되어 발생하는 문제입니다.
해결 방법
이 문제는 다음과 같이 해결할 수 있습니다.
먼저 해당 도메인 접속 시 정말로 문제가 없는지 확인합니다. (인증서가 만료되었거나 신뢰하지 못한 경우) 이상이 없다고 판단될 경우 다음 명령어를 사용하여 인증서 확인을 건너뛸 수 있습니다.
wget https://example.com/test.txt --no-check-certificate
위와 같이 --no-check-certificate
옵션을 붙여서 시도하면 아래와 같이 경고를 표시하지만 중단하지 않고 다운로드를 진행하게 됩니다.
--2020-08-10 05:10:27-- https://example.com/test.txt Resolving example.com (example.com)... 93.184.216.34 Connecting to example.com (example.com)|93.184.216.34|:443... connected. WARNING: The certificate of ‘example.com’ is not trusted. WARNING: The certificate of ‘example.com’ has expired. HTTP request sent, awaiting response... 200 OK Length: 28100 (27K) [text/plain] Saving to: ‘test.txt’ test.txt. 100%[==================================>] 27.80K 103KB/s in 0.3s 2020-08-10 05:10:28 (103 KB/s) - ‘test.txt’ saved [28100/28100]