CentOS 7의 yum 설치는 항상 오류와 함께 실패합니다.

CentOS 7의 yum 설치는 항상 오류와 함께 실패합니다.

404 오류:

[Errno -1] Metadata file does not match checksum
Trying other mirror.
[Errno 14] HTTP Error 403 - Forbidden

나는 시도했다:

rm -fr /var/cache/yum/*
yum clean all
yum clean all && yum clean metadata && yum clean dbcache && yum makecache && yum update

여전히 효과가 없습니다. 또 무엇을 할 수 있나요?

/etc/yum.repos.d디렉터리에 내 저장소 파일을 나열 하겠습니다 .

CentOS-Base.repo
CentOS-CR.repo
CentOS-fasttrack.repo
CentOS-Sources.repo
epel.repo
CentOS-Base.repo.rpmnew
CentOS-Debuginfo.repo
CentOS-Media.repo
CentOS-Vault.repo
epel-testing.repo
OpenLogic.repo

yum.conf콘텐츠는 다음과 같습니다

[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
bugtracker_url=http://bugs.centos.org/set_project.php?project_id=23&ref=http://bugs.centos.org/bug_report_page.php?category=yum
distroverpkg=centos-release
http_caching=packages

#  This is the default, if you make this bigger yum won't see if the metadata
# is newer on the remote and so you'll "gain" the bandwidth of not having to
# download the new metadata and "pay" for it by yum not having correct
# information.
#  It is esp. important, to have correct metadata, for distributions like
# Fedora which don't keep old packages around. If you don't like this checking
# interupting your command line usage, it's much better to have something
# manually check the metadata once an hour (yum-updatesd will do this).
# metadata_expire=90m

# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d
#proxy=http://proxy.com:8080
#proxy_username=xxx
#proxy_password=kkk

답변1

yum.conf캐싱 비활성화: http_caching=nonefrom의 값을 로 변경하여 파일에서 가장 빠른 미러링을 비활성화한 후 다음 명령을 입력합니다.fastestmirror.confenabled10

yum clean metadata
yum clean all

편집하다 플러그인을 일시적으로 비활성화하려면 명령줄 –disableplugin=fastestmirror에 추가하세요 yum. 예를 들어 yum update –disableplugin=fastestmirror.

플러그인을 영구적으로 비활성화하려면 편집 하고 다음 으로 /etc/yum/pluginconf.d/fastestmirror.conf 변경하십시오 .enabled=1enabled=0

답변2

해당 줄의 주석 처리를 해제하고 주석 처리하여 /etc/yum.repos.d/CentOS-Base.repo.rpmnew마스터 저장소를 제거한 다음 편집하고 활성화합니다 ./etc/yum.repos.d/CentOS-Base.repobaseurl=mirrorlist=

관련 정보