LukeHan 의 잡다한 기술 블로그

apt update 시 certificate(인증서) 확인 실패하는 경우 본문

OS/HamoniKR

apt update 시 certificate(인증서) 확인 실패하는 경우

LukeHan1128 2022. 1. 17. 20:00
반응형

새로운 서버 구성을 진행하던 중 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 인증서 문제이며 위와 같이 입력하여 해결하였다는 내용을 확인하여 적용 진행

https://askubuntu.com/questions/1095266/apt-get-update-failed-because-certificate-verification-failed-because-handshake

 

 

 

 

오류: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