使用 yum 出现 Loaded plugins: fastestmirror

Loaded plugins: fastestmirror

意思为:插件不可用

[root@localhost ~]# yum –y install xxx
Loaded plugins: fastestmirror

解决办法

1.修改fastestmirror配置文件

vim /etc/yum/pluginconf.d/fastestmirror.conf

enable=1 改为 enable=0

1

2.修改yum配置文件

vim /etc/yum,conf

2

3.重新构建yum

yum clean all

rm -rf /var/cache/yum

yum makecache

清除缓存并重新构建 yum

这样就可以解决这个问题了