日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

CentOS 6 EOL如何切換源?

CentOS 6操作系統版本結束了生命周期(EOL),Linux社區已不再維護該操作系統版本。建議您升級操作系統至CentOS 7及以上,如果您的業務過渡期仍需要使用CentOS 6系統中的一些安裝包,請根據下文切換CentOS 6的源。

背景信息

2020年11月30日CentOS 6 EOL。按照社區規則,CentOS 6的源地址http://mirror.centos.org/centos-6/內容已移除,目前第三方的鏡像站中均已移除CentOS 6的源。阿里云的源http://mirrors.cloud.aliyuncs.comhttp://mirrors.aliyun.com也無法同步到CentOS 6的源。當您在阿里云上繼續使用默認配置的CentOS 6的源會發生報錯。報錯示例如下圖所示:centos 6 error

您可以通過下文的操作步驟,在CentOS 6操作系統的ECS實例中將源配置按照網絡環境不同進行切換。

  • yum源

    • 專有網絡VPC類型實例需切換為http://mirrors.cloud.aliyuncs.com/centos-vault/6.10/源。

    • 經典網絡類型實例需切換為http://mirrors.aliyuncs.com/centos-vault/6.10/源。

  • epel源

    • 專有網絡VPC類型實例需切換為http://mirrors.cloud.aliyuncs.com/epel-archive/6/源。

    • 經典網絡類型實例需切換為http://mirrors.aliyuncs.com/epel-archive/6/源。

說明

本文主要說明ECS實例中的相關操作與配置。如果您的服務器不是ECS實例,需保證服務器具有公網訪問能力,并且源地址http://mirrors.cloud.aliyuncs.com需要替換為http://mirrors.aliyun.com。例如,切換yum源為http://mirrors.aliyun.com/centos-vault/6.10/;切換epel源為http://mirrors.aliyun.com/epel-archive/6/

操作步驟

  1. 登錄CentOS 6系統的ECS實例。

    具體操作,請參見連接方式概述

  2. 運行以下命令編輯CentOS-Base.repo 文件。

    vim /etc/yum.repos.d/CentOS-Base.repo 
  3. i進入編輯模式,修改以下內容切換源。

    請根據實例不同的網絡類型進行修改,具體內容如下:

    • 專有網絡VPC類型實例

      [base]
      name=CentOS-6.10
      enabled=1
      failovermethod=priority
      baseurl=http://mirrors.cloud.aliyuncs.com/centos-vault/6.10/os/$basearch/
      gpgcheck=1
      gpgkey=http://mirrors.cloud.aliyuncs.com/centos-vault/RPM-GPG-KEY-CentOS-6
      
      [updates]
      name=CentOS-6.10
      enabled=1
      failovermethod=priority
      baseurl=http://mirrors.cloud.aliyuncs.com/centos-vault/6.10/updates/$basearch/
      gpgcheck=1
      gpgkey=http://mirrors.cloud.aliyuncs.com/centos-vault/RPM-GPG-KEY-CentOS-6
      
      [extras]
      name=CentOS-6.10
      enabled=1
      failovermethod=priority
      baseurl=http://mirrors.cloud.aliyuncs.com/centos-vault/6.10/extras/$basearch/
      gpgcheck=1
      gpgkey=http://mirrors.cloud.aliyuncs.com/centos-vault/RPM-GPG-KEY-CentOS-6
    • 經典網絡類型實例

      [base]
      name=CentOS-6.10
      enabled=1
      failovermethod=priority
      baseurl=http://mirrors.aliyuncs.com/centos-vault/6.10/os/$basearch/
      gpgcheck=1
      gpgkey=http://mirrors.aliyuncs.com/centos-vault/RPM-GPG-KEY-CentOS-6
      
      [updates]
      name=CentOS-6.10
      enabled=1
      failovermethod=priority
      baseurl=http://mirrors.aliyuncs.com/centos-vault/6.10/updates/$basearch/
      gpgcheck=1
      gpgkey=http://mirrors.aliyuncs.com/centos-vault/RPM-GPG-KEY-CentOS-6
      
      [extras]
      name=CentOS-6.10
      enabled=1
      failovermethod=priority
      baseurl=http://mirrors.aliyuncs.com/centos-vault/6.10/extras/$basearch/
      gpgcheck=1
      gpgkey=http://mirrors.aliyuncs.com/centos-vault/RPM-GPG-KEY-CentOS-6

    編輯完成后,按Esc鍵,并輸入:wq保存退出文件。

  4. 運行以下命令編輯epel.repo 文件。

    vim /etc/yum.repos.d/epel.repo
  5. i進入編輯模式,修改以下內容切換源。

    請根據實例不同的網絡類型進行修改,具體內容如下:

    • 專有網絡VPC類型實例

      [epel]
      name=Extra Packages for Enterprise Linux 6 - $basearch
      enabled=1
      failovermethod=priority
      baseurl=http://mirrors.cloud.aliyuncs.com/epel-archive/6/$basearch
      gpgcheck=0
      gpgkey=http://mirrors.cloud.aliyuncs.com/epel-archive/RPM-GPG-KEY-EPEL-6
    • 經典網絡類型實例

      [epel]
      name=Extra Packages for Enterprise Linux 6 - $basearch
      enabled=1
      failovermethod=priority
      baseurl=http://mirrors.aliyuncs.com/epel-archive/6/$basearch
      gpgcheck=0
      gpgkey=http://mirrors.aliyuncs.com/epel-archive/RPM-GPG-KEY-EPEL-6

    編輯完成后,按Esc鍵,并輸入:wq保存退出文件。

后續步驟

yum源和epel源切換完成后,即可使用yum install命令在實例上安裝您所需要的軟件包。

使用自定義鏡像創建新的ECS實例,在啟動實例時cloud-init會自動初始化系統的源配置。如果您后續需要通過已切換源的ECS實例創建自定義鏡像,并且需要保留已切換的源配置,需要您在創建自定義鏡像前,按照以下操作在已切換源的ECS實例中修改cloud-init的配置文件/etc/cloud/cloud.cfg

  1. 運行以下命令編輯/etc/cloud/cloud.cfg文件。

    vim /etc/cloud/cloud.cfg
  2. i進入編輯模式,使用#注釋掉cloud_init_modules:下的- source-address模塊。

    注釋后,文件內的配置信息如下所示:cloudinit

  3. 編輯完成后,按Esc鍵,并輸入:wq保存退出文件。