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
  • 相关阅读:
    8.电影推荐
    一.Memcached企业服务
    7.学完linux系统运维到底可以做什么?
    svn+jenkins自动部署
    关于gitlab+jenkins自动部署代码的实现
    Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggre
    php实现雪花算法(ID递增)
    php使用rdkafka进行消费
    Burp破解安装(1.7和2.0)
    在已有lnmp环境的基础上安装PHP7
  • 原文地址:https://www.cnblogs.com/skymyyang/p/14108100.html
Copyright © 2011-2022 走看看