[root@c8-20~]# yum install -y gcc-c++
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
YumRepo Error: All mirror URLs are notusing ftp, http[s]or file.
Eg. Invalid release/repo/arch combination/
removing mirrorlist with no valid mirrors:/var/cache/yum/x86_64/6/base/mirrorlist.txt
Error: Cannot find a valid baseurl for repo: base
执行失败情况二:
[root@li496-237~]# yum -y install unzip zip
Loaded plugins: fastestmirror
Setting up Install Process
Determining fastest mirrors
YumRepo Error: All mirror URLs are notusing ftp, http[s]or file.
Eg. Invalid release/repo/arch combination/
YumRepo Error: All mirror URLs are notusing ftp, http[s]or file.
Eg. Invalid release/repo/arch combination/
YumRepo Error: All mirror URLs are notusing ftp, http[s]or file.
Eg. Invalid release/repo/arch combination/
http://mirrors.linode.com/centos/6/os/x86_64/repodata/repomd.xml:[Errno 14] PYCURL ERROR 22-"The requested URL returned error: 404 Not Found"
Trying other mirror.
To address this issue please refer to the below knowledge base article
https://access.redhat.com/articles/1320623
If above article doesn't help to resolve this issue please open a ticket with Red Hat Support.
Error: Cannot retrieve repository metadata (repomd.xml)for repository: base. Please verify
解决的办法
第一种解决方式(多条指令顺序执行)
sed -i "s|enabled=1|enabled=0|g"/etc/yum/pluginconf.d/fastestmirror.conf
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Aliyun.repo
yum clean all
yum makecache
一般情况下执行三条即可
第二种解决方式(手动修复)
2.1 编辑文件
vi /etc/yum/pluginconf.d/fastestmirror.conf
修改 fastestmirror文件
enable=0
2.2 或者执行以下命令
sed -i "s|enabled=1|enabled=0|g"/etc/yum/pluginconf.d/fastestmirror.conf