일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 설치
- 설정
- hamonikr
- javascript
- 리눅스
- 하모니카
- 자바스크립트
- Windows
- Atlassian
- 우분투
- 아틀라시안
- 윈도우
- JS
- script
- 파이썬
- java
- 스크립트
- 노드
- Linux
- 자바
- python
- node
- PostgreSQL
- DATABASE
- postgres
- ubuntu
- install
- 3.0
- DB
- 데이터베이스
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
apt update 시 certificate(인증서) 확인 실패하는 경우 본문
반응형
새로운 서버 구성을 진행하던 중 apt update 시 아래와 같은 오류 발생 확인
기존:6 https://packagecloud.io/asbru-cm/asbru-cm/linuxmint tina InRelease
무시:8 https://apt.hamonikr.org sun InRelease
오류:9 https://apt.hamonikr.org sun Release
Certificate verification failed: The certificate is NOT trusted.
The certificate chain uses expired certificate.
Could not handshake: Error in the certificate verification. [IP: 49.247.206.123 443]
무시:10 http://mirror.hamonikr.org/linuxmint tina InRelease
기존:11 http://mirror.hamonikr.org/ubuntu bionic InRelease
Certificate verification failed: The certificate is NOT trusted. The certificate chain uses expired certificate. Could not handshake: Error in the certificate verification. [IP: 49.247.206.123 443]
sudo apt install ca-certificates
sudo apt-get update
해당 에러 발생하는 경우 ca 인증서 문제이며 위와 같이 입력하여 해결하였다는 내용을 확인하여 적용 진행
오류:5 https://apt.hamonikr.org sun InRelease
다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다: NO_PUBKEY 9FA298A1E42665B8
출력 내용이 변경되긴 하였으나 동일한 문제 발생
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9FA298A1E42665B8
sudo apt-get update
위와 같이 입력하여 공개키를 등록한 후 update 하여 이상 없이 업데이트가 되는 것을 확인한다.
반응형
Comments