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
  • 相关阅读:
    Lesson 3 Nehe
    Lesson 2 Nehe
    Lesson 1 Nehe
    Lesson 1 Nehe
    JavaScript 字符串与数组转换函数[不用split与join]
    华中科大校长:教授被称为“叫兽”是教育的悲哀
    /etc/profile、~/.bash_profile等几个文件的执行过程
    cygwin下遇到system没有执行的问题
    发短信 汉字编码 utf-8 UCS-2BE
    UTF-8与UNICODE的关系及代码转换
  • 原文地址:https://www.cnblogs.com/skymyyang/p/14108100.html
Copyright © 2011-2022 走看看