CentOS 6操作系统版本结束了生命周期(EOL),Linux社区已不再维护该操作系统版本。建议您升级操作系统至CentOS 7及以上,如果您的业务过渡期仍需要使用CentOS 6系统中的一些安装包,请根据下文切换CentOS 6的源。
背景信息
http://mirrors.aliyun.com也无法同步到CentOS 6的源。当您在阿里云上继续使用默认配置的CentOS 6的源会发生报错。报错示例如下图所示:
您可以通过下文的操作步骤,在CentOS 6操作系统的ECS实例中将源配置按照网络环境不同进行切换。
- yum源
- http://mirrors.cloud.aliyuncs.com/centos-vault/6.10/源。
- http://mirrors.aliyuncs.com/centos-vault/6.10/源。
- epel源
- http://mirrors.cloud.aliyuncs.com/epel-archive/6/源。
- http://mirrors.aliyuncs.com/epel-archive/6/源。
-
说明 本文主要说明ECS实例中的相关操作与配置。如果您的服务器不是ECS实例,需保证服务器具有公网访问能力,并且源地址
http://mirrors.aliyun.com/epel-archive/6/。操作步骤
-
登录CentOS 6系统的ECS实例。
连接方式概述。
- CentOS-Base.repo 文件。
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 -
:wq保存退出文件。
- epel.repo 文件。
-
vim /etc/yum.repos.d/epel.repo
-
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 -
:wq保存退出文件。
-
后续步骤
yum install命令在实例上安装您所需要的软件包。
- /etc/cloud/cloud.cfg文件。
vim /etc/cloud/cloud.cfg
- source-address模块。
注释后,文件内的配置信息如下所示:- 编辑完成后,按:wq保存退出文件。
- /etc/cloud/cloud.cfg文件。
https://help.aliyun.com/document_detail/193569.html?spm=5176.smartservice_service_robot-chat.help.dexternal.52a13f1bE75Qsx
-
登录CentOS 6系统的ECS实例。
-