写点什么

failure: repodata/repomd.xml from cloudera-manager: [Errno 256] No more mirrors to try

用户头像
wjchenge
关注
发布于: 2021 年 03 月 04 日
failure: repodata/repomd.xml from cloudera-manager: [Errno 256] No more mirrors to try

背景


使用以下命令安装 Docker 时,发生报错导致安装失败。


以下安装命令二选一即可:

curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
复制代码


curl -sSL https://get.daocloud.io/docker | sh
复制代码


报错信息

异常信息截图


详细文字版:

[root@node1 lib]# curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun# Executing docker install script, commit: 3d8fe77c2c46c5b7571f94b42793905e5b3e42e4+ sh -c 'yum install -y -q yum-utils'https://archive.cloudera.com/cm5/redhat/7/x86_64/cm/5.14.2/repodata/repomd.xml: [Errno 14]  Error 401 - The requested URL returned error: 401 Authentication requiredTrying other mirror.

One of the configured repositories failed (Cloudera Manager, Version 5.14.2), 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=cloudera-manager ...
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 cloudera-manager or subscription-manager repos --disable=cloudera-manager
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=cloudera-manager.skip_if_unavailable=true
failure: repodata/repomd.xml from cloudera-manager: [Errno 256] No more mirrors to try.https://archive.cloudera.com/cm5/redhat/7/x86_64/cm/5.14.2/repodata/repomd.xml: [Errno 14] Error 401 - The requested URL returned error: 401 Authentication required
复制代码


解决方案


错误信息关键点:

failure: repodata/repomd.xml from cloudera-manager: [Errno 256] No more mirrors to try.
复制代码


删除 cloudera-manager 相关的 yum 源文件:


yum 源文件目录:

cd /etc/yum.repos.d
复制代码



执行删除命令:

rm cloudera-manager.repo*
复制代码


之后即可正常安装 Docker。

用户头像

wjchenge

关注

还未添加个人签名 2018.07.27 加入

还未添加个人简介

评论

发布
暂无评论
failure: repodata/repomd.xml from cloudera-manager: [Errno 256] No more mirrors to try