全部產品
Search
文件中心

Elastic Compute Service:CentOS 6 EOL如何切換源?

更新時間:Jun 19, 2024

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源

    • Virtual Private Cloud類型執行個體需切換為http://mirrors.cloud.aliyuncs.com/centos-vault/6.10/源。

    • 傳統網路類型執行個體需切換為http://mirrors.aliyuncs.com/centos-vault/6.10/源。

  • epel源

    • Virtual Private Cloud類型執行個體需切換為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進入編輯模式,修改以下內容切換源。

    請根據執行個體不同的網路類型進行修改,具體內容如下:

    • Virtual Private Cloud類型執行個體

      [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進入編輯模式,修改以下內容切換源。

    請根據執行個體不同的網路類型進行修改,具體內容如下:

    • Virtual Private Cloud類型執行個體

      [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儲存退出檔案。