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

おすすめ記事