1. 程式人生 > 其它 >CentOS 8 EOL如何切換源?

CentOS 8 EOL如何切換源?

CentOS 8 EOL如何切換源?

CentOS 8作業系統版本結束了生命週期(EOL),Linux社群已不再維護該作業系統版本。建議您切換到Anolis或Alinux。如果您的業務過渡期仍需要使用CentOS 8系統中的一些安裝包,請根據下文切換CentOS 8的源。

背景資訊

2021年12月31日CentOS 8 EOL。按照社群規則,CentOS 8的源地址http://mirror.centos.org/centos/8/內容已移除,目前第三方的映象站中均已移除CentOS 8的源。阿里雲的源http://mirrors.cloud.aliyuncs.com和http://mirrors.aliyun.com

也無法同步到CentOS 8的源。當您在阿里雲上繼續使用預設配置的CentOS 8的源會發生報錯。報錯示例如下圖所示:

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

  • yum源:專有網路VPC型別例項需切換為http://mirrors.cloud.aliyuncs.com/centos-vault/8.5.2111源。
  • epel源:專有網路VPC型別例項需切換為http://mirrors.cloud.aliyuncs.com/epel-archive/8/源。

說明 本文主要說明ECS例項中的相關操作與配置。如果您的伺服器不是ECS例項,需保證伺服器具有公網訪問能力,並且源地址http://mirrors.cloud.aliyuncs.com

需要替換為http://mirrors.aliyun.com。例如,切換yum源為http://mirrors.aliyun.com/centos-vault/8.5.2111/;切換epel源為http://mirrors.aliyun.com/epel-archive/8/

操作步驟

  1. 登入CentOS 8系統的ECS例項。具體操作,請參見連線方式概述

  2. 執行以下命令備份之前的repo檔案。

    rename '.repo' '.repo.bak' /etc/yum.repos.d/*.repo
    
  3. 執行以下命令下載最新的repo檔案。

    wget https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo -O /etc/yum.repos.d/Centos-vault-8.5.2111.repo
    wget https://mirrors.aliyun.com/repo/epel-archive-8.repo -O /etc/yum.repos.d/epel-archive-8.repo
    
  4. 執行以下命令替換repo檔案中的連結。

    sed -i 's/mirrors.cloud.aliyuncs.com/url_tmp/g'  /etc/yum.repos.d/Centos-vault-8.5.2111.repo &&  sed -i 's/mirrors.aliyun.com/mirrors.cloud.aliyuncs.com/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo && sed -i 's/url_tmp/mirrors.aliyun.com/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo
    sed -i 's/mirrors.aliyun.com/mirrors.cloud.aliyuncs.com/g' /etc/yum.repos.d/epel-archive-8.repo
    
  5. 執行以下命令重新建立快取。

    yum clean all && yum makecache
    

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