프로그래밍/linux

YumRepo Error: All mirror URLs are not using ftp, http[s] or file.

-샤리- 2021. 3. 16. 11:16

오랜만에 yum install 명령을 쳤더니 이와 같은 오류가 발생했다.

YumRepo Error: All mirror URLs are not using ftp, http[s] or file.

 

정확히는

Loaded plugins: fastestmirror

Setting up Install Process

Determining fastest mirrors

YumRepo Error: All mirror URLs are not using ftp, http[s] or file.

 Eg. Invalid release/repo/arch combination/

removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/6/base/mirrorlist.txt

Error: Cannot find a valid baseurl for repo: base

 

2020.11.30일자로 CentOS 6 보안 업데이트 지원이 종료되면서 나오는 문제라고 한다.

 

solved

root로 계정 전환 후, 

echo https://vault.centos.org/6.10/os/x86_64/ > /var/cache/yum/x86_64/6/base/mirrorlist.txt
echo http://vault.centos.org/6.10/extras/x86_64/ > /var/cache/yum/x86_64/6/extras/mirrorlist.txt
echo http://vault.centos.org/6.10/updates/x86_64/ > /var/cache/yum/x86_64/6/updates/mirrorlist.txt

 

이후, 다시 yum install xxxx을 하니 설치가 잘 되는 것을 확인 할 수 있다.

 

뭐 근데 업데이트를 종료선언 했으니 이제 CentOS 7으로 올리는게 맞는거 같다.