1.问题描述

yum服务挂了,安装任何包都会报错

# 执行命令
$ yum install xxx
# 报错
Loaded plugins: fastestmirror, refresh-packagekit, security 
Loading mirror speeds from cache
No package xxx available. 
Error: Nothing to do

2.解决

测试网络是否接通

ping baidu.com
# 有返回即可

如果显示没有连接的话,就说明没网,也就无法使用yum 命令。

3.解决

网络通的情况下,yum源可能有问题,需要更换一下yum源

  1. 备份一下设置源的文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
  1. 下载新的yum设置下载源的文件
    CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

或者

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
  1. 生成缓存
yum clean all
yum makecache

4)装一下 epel 源

EPEL(Extra Packages for Enterprise Linux)是由 Fedora 社区打造,为 RHEL 及衍生发行版如 CentOS等提供高质量软件包的项目。装上了 EPEL,就像在 Fedora 上一样,可以通过 yum install 软件包名,即可安装很多以前需要编译安装的软件、常用的软件或一些比较流行的软件,比如现在流行的nginx、htop、ncdu、vnstat等等,都可以使用EPEL很方便的安装更新。

yum install epel-release

之后再使用 yum install xxx 一切正常

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐