Today :
Yesterday :
Total :
Yesterday :
Total :
Notice
Recent Posts
Recent Comments
JunToday.com
CentOS 6 yum Error: Cannot find a valid baseurl for repo: base 본문
생활속의 IT 노하우/리눅스
CentOS 6 yum Error: Cannot find a valid baseurl for repo: base
JunToday 2021. 3. 18. 10:57728x90
CentOS 6 업데이트 지원 종료로 yum update나 install 하면 나오는 에러다.
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
보통 위와 같이 에러가 남.
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
이렇게 미러리스트 텍스트 파일을 생성해주면 보통은 해결이 된다.
그런데 추가적으로 아래 미러리스트가 없다는 오류가 발생할 수 있다.
centos-sclo-rh/mirrorlist.txt
centos-sclo-sclo/mirrorlist.txt
이럴 경우엔 아래와 같이 미러리스트를 생성해주면 해결된다.
echo "http://vault.centos.org/6.10/sclo/x86_64/rh" > /var/cache/yum/x86_64/6/centos-sclo-rh/mirrorlist.txt
echo "http://vault.centos.org/6.10/sclo/x86_64/sclo" > /var/cache/yum/x86_64/6/centos-sclo-sclo/mirrorlist.txt
728x90
'생활속의 IT 노하우 > 리눅스' 카테고리의 다른 글
리눅스 net-snmp에서 snmp v3 설정 (0) | 2022.02.09 |
---|---|
mysql 전체 백업 -- Warning: Skipping the data of table mysql.event. Specify the --events option explicitly. (0) | 2021.04.14 |
CentOS 8 지원 종료, CentOS Stream으로 전환? 대체제는? (0) | 2021.02.18 |
CentOS7.6 설치 + b120i raid controller driver 설치 (0) | 2020.11.19 |
[CentOS] CentOS 6.5에서 CentOS 6.7로 업데이트하는 방법 (0) | 2020.10.14 |
Comments