华为云centos8 配置国内yum源及遇到问题

centos8 配置国内yum源

    • 系统和工具
    • 操作过程
    • 过程错误

偶然发现,自己华为云服务器 yum 怎么用都报错,摸索半天,终于搞定了,可能是华为镜像地址出了问题,正确的 换成国内源就行。

网上教程五花八门的,很多都是过期资源,大多博客是 centos8 之前的,试错浪费了很多时间。

系统和工具

作为入门级选手,很是依赖工具,记不住各种命令。

系统:华为云 centos8
工具:FinalShell 3.9

操作过程

  1. 首先进入 /etc/yum.repos.d 文件夹
    cd /etc/yum.repos.d
    

里边一堆配置,我的服务器不知为何还少几个文件,不过不重要,因为用不到,如图:
华为云centos8 配置国内yum源及遇到问题_第1张图片

  1. 新建备份文件夹 bak ,用来备份原来的配置文件

    可以使用命令创建,或者直接使用工具右键-创建:
    华为云centos8 配置国内yum源及遇到问题_第2张图片
    将这堆原文件选中拖拽到 bak 文件夹(个人认为:自带的配置文件优先级更高,如果不移走,下载的阿里云配置不会生效
    华为云centos8 配置国内yum源及遇到问题_第3张图片
    文件夹结构:
    华为云centos8 配置国内yum源及遇到问题_第4张图片

  2. 下载阿里云镜像文件

    在 /etc/yum.repos.d 文件夹下执行:

    wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo
    

华为云centos8 配置国内yum源及遇到问题_第5张图片
4. (重要!重要!重要!)修改配置文件

不知道啥原因,阿里下载配置文件是有问题的,需要修改一下。 双击打开配置文件:
华为云centos8 配置国内yum源及遇到问题_第6张图片
crtl+f 搜索并替换:(只需要替换两个地方)

mirrors.cloud.aliyuncs.com 替换为 mirrors.aliyun.com
releasever 替换为 releasever-stream

注意:替换所有

然后执行:

yum clean all

yum makecache
在这里插入图片描述

过程错误

http://mirrors.cloud.aliyuncs.com/centos/7/os/x86_64/repodata/repomd.xml: [Errno 14] curl#6 - “Could not resolve host: mirrors.cloud.aliyuncs.com; Unknown error” Trying other mirror.

错误:为 repo ‘appstream’ 下载元数据失败 : Cannot prepare internal mirrorlist

Status code: 404 for https://repo.huaweicloud.com/centos/8/os/x86_64/repodat

找不到 https://mirrors.aliyun.com/centos/8/BaseOS/x86_64/os/repodata/repomd.

could not resolve host:mirrors.cloud.aliyuncs.com;Unknown error

以上问题,基本都是由于 yum 源地址错误,按照上边修改即可。附 阿里云 yum 源

参考博客:

CentOS8系统配置国内yum源

在CentOS 8下更改yum源与更新系统

CentOS- 8系统配置华为云yum源

你可能感兴趣的:(后端部署,华为云,centos,centos8,yum)