오랜만에 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으로 올리는게 맞는거 같다.
'프로그래밍 > linux' 카테고리의 다른 글
[linux] CentOS 6에 php7 설치하기, epel-release-6-8.noarch.rpm, remi-release-6.rpm (0) | 2021.03.17 |
---|---|
[linux] 터미널을 이용하여 파일 업로드하기 (feat. ssh) (0) | 2021.03.16 |
bash: scp: command not found (0) | 2021.03.16 |
[linux] screen 사용하기 (screen 시작, 종료, #세션유지) (0) | 2020.11.20 |
[linux] vimrc 설정 (vim install 부터 colorscheme 다운로드 받아서 적용하기) (0) | 2020.11.19 |