반응형
사실 엄청나게 삽질을 하다가 정말 괜찮은 해결책이 나와 이렇게 불이나게 글을 올리게 되었습니다.
문제해결을 찾는데 90% 이상은 문제해결의 도움을 주지 못해 정말 포기를 할까까지도 생각을 했섰습니다.
아뭍튼 여러분들은 쉽게 해결법을 갖고 가시기를 바라면서....
yum install tree error
[root@docker-centos ~]# yum install tree
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was
14: curl#6 - "Could not resolve host: mirrorlist.centos.org; 알 수 없는 오류"
One of the configured repositories failed (Unknown),
and yum doesn't have enough cached data to continue. At this point the only
safe thing yum can do is fail. There are a few ways to work "fix" this:
1. Contact the upstream for the repository and get them to fix the problem.
2. Reconfigure the baseurl/etc. for the repository, to point to a working
upstream. This is most often useful if you are using a newer
distribution release than is supported by the repository (and the
packages for the previous distribution release still work).
3. Run the command with the repository temporarily disabled
yum --disablerepo=<repoid> ...
4. Disable the repository permanently, so yum won't use it by default. Yum
will then just ignore the repository until you permanently enable it
again or use --enablerepo for temporary usage:
yum-config-manager --disable <repoid>
or
subscription-manager repos --disable=<repoid>
5. Configure the failing repository to be skipped, if it is unavailable.
Note that yum will try to contact the repo. when it runs most commands,
so will have to try and fail each time (and thus. yum will be be much
slower). If it is a very temporary problem though, this is often a nice
compromise:
yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true
Cannot find a valid baseurl for repo: base/7/x86_64
문제해결 방법
su - mode 로 root로 진입 후 작업
먼저 백업을 한다.
repo_file=/etc/yum.repos.d/CentOS-Base.repo
cp ${repo_file} ~/CentOS-Base.repo.backup
sed -i s/#baseurl/baseurl/ ${repo_file}
sed -i s/mirrorlist.centos.org/vault.centos.org/ ${repo_file}
sed -i s/mirror.centos.org/vault.centos.org/ ${repo_file}
yum clean all
nano /etc/yum.repos.d/CentOS-Base.repo
# 해제
nano /etc/yum.repos.d/CentOS-Base.repo
편집
baseurl # 해제 후 저장
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#
[base]
name=CentOS-$releasever - Base
mirrorlist=http://vault.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
baseurl=http://vault.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
#released updates
[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://vault.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
baseurl=http://vault.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
mirrorlist=http://vault.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra
baseurl=http://vault.centos.org/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
mirrorlist=http://vault.centos.org/?release=$releasever&arch=$basearch&repo=cen$
baseurl=http://vault.centos.org/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
반응형
'IT > programming' 카테고리의 다른 글
fdisk 볼륨확장 비활성시 diskpart로 문제 해결 (0) | 2025.05.05 |
---|---|
시스템 해킹 강좌 6강 중 메모리 스택프레임 이해하기 (0) | 2025.05.04 |
개발 블로그 중간발표 'GitHub Blog Opening' (0) | 2024.07.21 |
android에서 termux로 ubuntu vscode 실행하는 방법 대성공 (2) | 2024.06.30 |
f-droid 의 놀라운 기능 (0) | 2024.06.29 |