web-dev-qa-db-ja.com

yum updateを機能させない(yumには、続行するのに十分なキャッシュデータがありません)

Centos 7にyumを使用してインストールを成功させました。次に、epel repo(yum install epel-release)そして、常に次のエラーを表示し、その後、何もインストールできませんでした

 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

インターネットでたくさん検索しましたが、解決策が見つかりませんでした。一部の人々は多分プロキシからです。プロキシ情報をyum.confに追加しても、失敗しました。

次に、epel repoを削除した場合、おそらくそれが機能し、システムからepel-repoを削除したことを確認したいと思います。その後、インストールできます。

この問題を2日間費やして私を助けてください

7
Babak Mammadov

あなたが発見したように、epel-releaseのパッケージが問題を引き起こしています。まだ行っていない場合:

# yum remove epel-release

次に、EPELリポジトリを次のようにインストールします(wgetパッケージが必要です)。

# wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-9.noarch.rpm
# rpm -ivh epel-release-7-9.noarch.rpm

そこから、問題なくyum updateを実行できるはずです。

8
Lee Kaelin

新しいCentOS 7.6でこの問題が発生しました

解決策は簡単でした:

  • パッケージを削除しないでくださいepel-release(すでに削除している場合はインストールしてください)
  • ファイルを編集/etc/yum.repos.d/epel.repo
  • 最初のセクション([epel]):
    • コメントmetalink=https://...
    • コメント解除baseurl=http://...

これで問題は解決しました。

5
Liron Cohen

rootとしてログインするか、Sudoを使用して、次のようにします。

#ONBOOT=no
#dhclient
#yum update

この問題が修正されることを願っています。

0
Irfan Rahman

yum-config-manager --save --setopt = spacewalk-client.skip_if_unavailable = true

上記のコマンドを実行してBOOOOOOOOMを参照してください

0
user351916

たぶん、あなたはあなたのDNSサーバーを/etc/resolv.confに追加する必要があるかもしれません。そうすれば、例えば私の場合(Google DNSで十分です)のリポジトリのホストを知ることができます:

cat /etc/resolv.conf

# Generated by NetworkManager

nameserver 192.168.1.128 # local DNS

nameserver 8.8.8.8

nameserver 8.8.4.4
0
hungd

私もこの問題に遭遇しました。この問題の根本的な原因は、yumリポジトリが建物のDockerイメージにアクセスできないことでした。そのため、kubernetesクラスターのネットワークポリシーを変更する必要があります(kubernetesプロジェクトで作業していたため)。

0
prashant