首页 > 系统相关 >CentOS加载yum源时报错 [Errno 14] HTTP Error 404 - Not Found Trying other mirror.

CentOS加载yum源时报错 [Errno 14] HTTP Error 404 - Not Found Trying other mirror.

时间:2024-03-23 21:57:17浏览次数:32  
标签:HTTP 14 mirrors repos yum aliyun Error Trying com

报错内容:

[root@192 yum.repos.d]# yum repolist
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Determining fastest mirrors
 * base: mirrors.aliyun.com
 * extras: mirrors.aliyun.com
 * updates: mirrors.aliyun.com
http://mirrors.aliyun.com/centos/%24releasever/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.
To address this issue please refer to the below wiki article 

https://wiki.centos.org/yum-errors

If above article doesn't help to resolve this issue please use https://bugs.centos.org/.

解决办法:

将腾讯yum源仓库的$releasever变量都改为7

命令:vim /etc/yum.repos.d/Centos-Base.repo
vim /etc/yum.repos.d/Centos-Epel.repo

命令::%s/$releasever/7/g #文本编辑器中的替换命令

修改完之后执行:
yum makecache

标签:HTTP,14,mirrors,repos,yum,aliyun,Error,Trying,com
From: https://www.cnblogs.com/zhengyan6/p/18091739

相关文章

  • P4314 CPU 监控
    P4314CPU监控这题是维护历史最大值模板。先套线段树,考虑怎么维护标记。我们发现普通的标记的维护遵循能合并就合并,但是这就会出现问题:假如一个标记还没有下传时就被修改(也就是减小),那就会导致子树的历史最大值不正确(变小)。考虑先不合并同一个节点的标记,把它们看成一个操作序......
  • HttpHelper
    publicstaticclassHttpHelper{//privatestaticLogHelperLog{get;}=newLogHelper("HttpHelper");///<summary>///发起POST同步请求///</summary>///<paramname="url"&g......
  • https多线程下载代码
    这里使用了curl网络库和使用多线程来下载对应https链接的文件对应的.h头文件:#pragmaonce#include<iostream>#include<fstream>#include<curl/curl.h>#include<pthread.h>#include<sys/mman.h>#include<sys/stat.h>#include<fcntl.h>#......
  • 前端报错 request to https://registry.npm.taobao.org/yorkie/download/yorkie-2.0.0
    前端npminstall报错:npmERR!requesttohttps://registry.npm.taobao.org/yorkie/download/yorkie-2.0.0.tgzfailed,reason:certificatehasexpired解决方式://1.清空缓存npmcacheclean--force//2.切换新源:npmconfigsetregistry镜像源npmconfig......
  • 25计学(11408)考研记录贴
    25计学(11408)考研记录贴背景:广东二本,计算机科学与技术专业23年获ICPC,CCPC和百度之星铜奖,蓝桥睿抗均有国奖,GDCPC铁2021-2023学校算法集训室学生教练深度学习论文在发ing前后端知识完全没学过大学成绩(总之除了数据结构很会,其他完全没学,还好学校考试水):高数75,线代85,概统75,数据......
  • https://github.com/google/adb-sync
    大致的实现方式:是一个python文件,在windows上就pythonadb-sync-R-t-n--dry-run/storage/emulated/0C:\a\b这样运行 其中本机系统的文件列表和修改时间获取就用os库(importos)手机上的文件列表和修改时间获取就用ls-al     https://blog.csdn.net/chabb/ar......
  • 【Java - 框架 - HttpClient】(01) 使用“HttpClient“爬取网页的代码示例 - 快速上手
    使用"HttpClient"爬取网页的代码示例-快速上手;依赖<dependency><groupId>org.apache.httpcomponents</groupId><artifactId>httpcore</artifactId><version>4.4.14</version></dependency><dependency>......
  • 鸿蒙开发,使用http返回的响应数据无法正常获取 ,利用hilog打印日志一直结果是object或者
    项目场景:这里简述项目相关背景:前后端分离项目,使用鸿蒙做前端,后端SpringBoot写好接口(通过商品分类id查询商品列表),鸿蒙前端页面使用Tabs组件导航,展示商品分类,点击分类标签,查询后端接口,返回对应分类商品列表数据项目场景:鸿蒙开发,使用http返回的响应数据无法正常获取,利用hilo......
  • P1466 [USACO2.2] 集合 Subset Sums
    题目传送门:P1466[USACO2.2]集合SubsetSums-洛谷|计算机科学教育新生态(luogu.com.cn)https://www.luogu.com.cn/problem/P1466//https://www.luogu.com.cn/problem/P1466//背包#include<bits/stdc++.h>usingnamespacestd;intval[40],f[40][1005];//f[i][......
  • https 协议
    什么是Https协议HTTPS也是⼀个应⽤层协议.是在HTTP协议的基础上引⼊了⼀个加密层。HTTP协议内容都是按照⽂本的⽅式明⽂传输的.这就导致在传输过程中出现⼀些被篡改的情况。HTTPS通过使用协议加密通信,可以保护数据在传输过程中的安全性,防止敏感信息被恶意获取。......