yum 安装软件失败

36次阅读

共计 523 个字符,预计需要花费 2 分钟才能阅读完成。

遇到的错误
[root@DBTEST ~]# yum install zabbix-agent -y
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
* base: mirrors.njupt.edu.cn
* extras: mirrors.aliyun.com
* updates: mirrors.njupt.edu.cn
Setting up Install Process
Nothing to do

解决方法

确定机器能联网,ping 百度。
更换系统 yum 源。

// 备份
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

// CentOS 6 下载
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

// 更改 CentOS-Media.repo 使其为不生效:(本机已经是不生效)
enabled=0

// 运行 yum makecache 生成缓存
yum clean all
yum makecache

正文完
 0