일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 보르비스초월
- 아파치
- 티스토리
- 윈도우10
- 가상서버호스팅
- KB국민카드
- 킹북이초월
- KB증권
- iptime
- centos
- SKT
- 스톤에이지
- php
- ConoHa
- jQuery
- 리눅스
- 알리익스프레스
- 시놀로지
- 자바스크립트
- PHP-FPM
- 라즈베리파이2
- 램가스초월
- Apache
- Rocky
- 복현오거리
- proxmox
- mysql
- 소비전력
- 알뜰폰
- OpenWrt
- Today
- Total
맛집 여행 캠핑 일상 생활
[CentOS] wget certificate issue 본문
wget 으로 https 보안인증서가 있는 서버에 접근시 아래와 같은 에러가 나면서 다운로드가 되지 않습니다.
[root@raspberry log]# wget https://www.example.com/ccs/download.txt
--2023-11-27 08:55:18-- https://www.example.com/ccs/download.txt
Resolving http://www.example.com (http://www.example.com)... 192.168.1.2
Connecting to http://www.example.com (http://www.example.com)|192.168.1.2|:443... connected.
ERROR: cannot verify http://www.example.com's certificate, issued by ‘/C=US/O=Let's Encrypt/CN=R3’:
Issued certificate has expired.
To connect to http://www.example.com insecurely, use `--no-check-certificate'.
위의 메시지대로 --no-check-certificate 옵션을 줘도 되겠지만 ca-certificates 를 설치하도록 합니다.
[root@raspberry log]# yum -y install ca-certificates
...
================================================================================
Package Arch Version Repository Size
================================================================================
Updating:
ca-certificates noarch 2023.2.60_v7.0.306-72.el7_9 updates 923 k
Transaction Summary
================================================================================
Upgrade 1 Package
...
Updated:
ca-certificates.noarch 0:2023.2.60_v7.0.306-72.el7_9
Complete!
[root@raspberry log]# wget https://www.example.com/ccs/download.txt
--2023-11-27 09:15:40-- https://www.example.com/ccs/download.txt
Resolving http://www.example.com (http://www.example.com)... 192.168.1.2
Connecting to http://www.example.com (http://www.example.com)|192.168.1.2|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 96735 (94K) [text/plain]
Saving to: ‘download.txt’
100%[======================================>] 96,735 --.-K/s in 0.03s
2023-11-27 09:15:41 (3.13 MB/s) - ‘download.txt’ saved [96735/96735]
'LINUX' 카테고리의 다른 글
[Rocky] yum update nobest 에러 (0) | 2024.06.25 |
---|---|
[CentOS] PXE Boot 서버 구축 방법 (Win10PE) (0) | 2024.03.22 |
[CentOS] 9.x ssh 접속 설정 방법 (0) | 2024.03.13 |
[CentOS] 7.x multiple php7.4 phpMyAdmin 로그인 안되는 문제 (0) | 2023.09.18 |
[APACHE] .htaccess 특정 ip 허용 나머지는 리디렉션 (0) | 2023.08.24 |