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

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的源會發生報錯。報錯示例如下圖所示:centos8報錯

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

  • yum源

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

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

  • epel源:

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

    • 經典網絡類型實例需切換為http://mirrors.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 http://mirrors.cloud.aliyuncs.com/repo/Centos-vault-8.5.2111.repo -O /etc/yum.repos.d/Centos-vault-8.5.2111.repo
    wget http://mirrors.cloud.aliyuncs.com/repo/epel-archive-8.repo -O /etc/yum.repos.d/epel-archive-8.repo
    重要

    如果您的服務器不是ECS實例,請將命令中的源地址http://mirrors.cloud.aliyuncs.com替換為http://mirrors.aliyun.com。您也可以直接參考CentOS 鏡像社區說明進行下載。

  4. 運行以下命令替換repo文件中的鏈接。

    sed -i 's/http:\/\/mirrors.cloud.aliyuncs.com/url_tmp/g'  /etc/yum.repos.d/Centos-vault-8.5.2111.repo &&  sed -i 's/http:\/\/mirrors.aliyun.com/http:\/\/mirrors.cloud.aliyuncs.com/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo && sed -i 's/url_tmp/http:\/\/mirrors.aliyun.com/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo
    sed -i 's/http:\/\/mirrors.aliyun.com/http:\/\/mirrors.cloud.aliyuncs.com/g' /etc/yum.repos.d/epel-archive-8.repo
  5. 運行以下命令重新創建緩存。

    yum clean all && yum makecache

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