zoukankan      html  css  js  c++  java
  • yum 报错;

    YumRepo Error: All mirror URLs are not using ftp, http[s] or file.centos6 yum失败!

    原因:centos6的默认源在2012年-12月左右被官方搞掉了

    下列是错误详情
    Bash

    [root@c8-20 ~]# yum makecache
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
    YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
     Eg. Invalid release/repo/arch combination/
    removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/6/base/mirrorlist.txt
    Error: Cannot find a valid baseurl for repo: base
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    或者
    Bash

    [root@li496-237 ~]# yum -y install unzip zip
    Loaded plugins: fastestmirror
    Setting up Install Process
    Determining fastest mirrors
    YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
    Eg. Invalid release/repo/arch combination/
    YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
    Eg. Invalid release/repo/arch combination/
    YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
    Eg. Invalid release/repo/arch combination/
    http://mirrors.linode.com/centos/6/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    To address this issue please refer to the below knowledge base article 
    
    https://access.redhat.com/articles/1320623
    
    If above article doesn't help to resolve this issue please open a ticket with Red Hat Support.
    
    Error: Cannot retrieve repository metadata (repomd.xml) for repository: base. Please verify 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    第一种方法:一键修复(一条一条执行即可):

    一般执行了前3条命令就好了
    Bash

    sed -i "s|enabled=1|enabled=0|g" /etc/yum/pluginconf.d/fastestmirror.conf
    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
    curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Aliyun.repo 
    yum clean all
    yum makecache
    
    • 1
    • 2
    • 3
    • 4
    • 5

    第二种方法:手动修复教程:

    首先把fastestmirrors关了
    Markup

    #编辑

    vi /etc/yum/pluginconf.d/fastestmirror.conf
    
    • 1

    #修改

    enable=0
    
    • 1

    #或者执行以下命令

    sed -i "s|enabled=1|enabled=0|g" /etc/yum/pluginconf.d/fastestmirror.conf
    
    • 1

    先把之前的repo挪到备份,然后下面两个二选一
    Markup

    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
    
    • 1

    替换为官方Vault源
    Markup

    curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Official.repo
    
    • 1

    替换为阿里云Vault镜像
    Markup

    curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Aliyun.repo
    

     内容转自https://blog.csdn.net/weixin_45621658/article/details/110734514

  • 相关阅读:
    计算几何 val.3
    项目中常用的19条MySQL优化
    九年测试老鸟给测试新人的6条忠告
    敏捷软件测试常见的七个误区
    JEMTER简单的测试计划
    你真的会搭建测试环境吗?
    使用 Fiddler工具模拟post四种请求数据
    性能测试方案及性能测试流程
    Appium的环境搭建和配置
    Python :编写条件分支代码的技巧
  • 原文地址:https://www.cnblogs.com/hean2020/p/14857455.html
Copyright © 2011-2022 走看看