zoukankan      html  css  js  c++  java
  • centos6 yum源失效

    ## 近期centos6 官方已经停止维护, 建议升级到centos7 

    我们大部分的服务器还是centos6, 因此需要解决,还好官方默认还维护了vault版本. 

    地址: https://vault.centos.org/6.10/isos/x86_64/

     一键解决脚本:

    curl -o update-centos6yum.sh https://gitee.com/usmile/jenkinslibrary/raw/master/update-centos6yum.sh
    chmod +x update-centos6yum.sh
    ./update-centos6yum.sh

    ## 升级方案

    $ mkdir /etc/yum.repos.d/backup
    $ mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/backup/
    $ cd /etc/yum.repos.d/
    $ vim CentOS-Base.repo
    
    [base]
    name=CentOS-$releasever
    failovermethod=priority
    baseurl=https://vault.centos.org/6.10/os/x86_64/
    gpgcheck=1
    gpgkey=https://vault.centos.org/6.10/os/x86_64/RPM-GPG-KEY-CentOS-6
    
    
    [updates]
    name=CentOS-$releasever
    enabled=1
    failovermethod=priority
    baseurl=https://vault.centos.org/6.10/updates/$basearch/
    gpgcheck=1
    gpgkey=https://vault.centos.org/6.10/os/x86_64/RPM-GPG-KEY-CentOS-6
    
    
    [extras]
    name=CentOS-$releasever
    enabled=1
    failovermethod=priority
    baseurl=https://vault.centos.org/6.10/extras/$basearch/
    gpgcheck=1
    gpgkey=https://vault.centos.org/6.10/os/x86_64/RPM-GPG-KEY-CentOS-6
    
    
    $ vim epel.repo
    
    [epel]
    name=Extra Packages for Enterprise Linux 6 - $basearch
    baseurl=https://archives.fedoraproject.org/pub/archive/epel/6/$basearch
    failovermethod=priority
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
    
    [epel-debuginfo]
    name=Extra Packages for Enterprise Linux 6 - $basearch - Debug
    baseurl=https://archives.fedoraproject.org/pub/archive/epel/6/$basearch/debug
    failovermethod=priority
    enabled=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
    gpgcheck=1
    
    [epel-source]
    name=Extra Packages for Enterprise Linux 6 - $basearch - Source
    baseurl=https://archives.fedoraproject.org/pub/archive/epel/6/SRPMS
    failovermethod=priority
    enabled=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
    gpgcheck=1
  • 相关阅读:
    TSQL存储过程:获取父级类别图片
    ASP.NET小收集<7>:JS创建FORM并提交
    JS收集<4>:限制输入搜索串
    js编码风格
    学习日志0504
    记于20120508日晚
    NHibernate中的Session yangan
    SQL Server2005排名函数 yangan
    让IE8兼容网页,简单开启兼容模式 yangan
    Log4Net跟我一起一步步 yangan
  • 原文地址:https://www.cnblogs.com/skymyyang/p/14108100.html
Copyright © 2011-2022 走看看