Error: Failed to download metadata for repo 'appstream' (CentOS yum 에러)

 

 

1. 에러 내용

 

CentOS에서 패키지 설치 도구 yum이 정상적으로 작동하지 않는 오류입니다.

Error: Failed to download metadata for repo 'appstream': 
Cannot prepare internal mirrorlist: No URLs in mirrorlist

 

 

2. 원인

 

개발 리소스를 다운받는 미러 주소가 vault.centos.org로 영구적으로 바뀌었다고 합니다.

https://www.centos.org/centos-linux-eol/

 

CentOS Linux EOL

Home CentOS Linux EOL CentOS Linux 8 will reach End Of Life (EOL) on December 31st, 2021. Here’s what that means. In line with the EOL of previous releases, we will NOT be automatically migrating anyone to the next version (which is CentOS Stream 8 in th

www.centos.org

 

 

3. 해결 방안

 

# cd /etc/yum.repos.d/

# sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
# sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*

// 다시 업데이트를 해보면
# yum update -y

 

반응형