使用yum 安装是出现 : Loaded plugins: fastestmirror
[root@localhost yum.repos.d]# yum –y install httpd httpd-devel
Loaded plugins: fastestmirror
解决办法:
1.修改插件配置文件
[root@localhost yum.repos.d]# vim /etc/yum/pluginconf.d/fastestmirror.conf
[main]
enabled=0 //由 1 改成0 ,禁用该插件
verbose=0
always_print_best_host = true
socket_timeout=3
# Relative paths are relative to the cachedir (and so works for users as well
# as root).
hostfilepath=timedhosts.txt
maxhostfileage=10
maxthreads=15
#exclude=.gov, facebook
#include_only=.nl,.de,.uk,.ie
2.修改yum 配置文件
[root@localhost yum.repos.d]# vim /etc/yum.conf
9 plugins=0 //不使用插件
3. 清除缓存并重新构建yum 源
[root@localhost yum.repos.d]# yum clean all
[root@localhost yum.repos.d]# yum makecache
4. 使用yum 重新安装
禁用fastestmirror插件解决yum问题
本文介绍了解决使用yum安装软件时遇到的fastestmirror插件导致的问题。通过禁用插件、修改配置文件、清除缓存及重建yum源,成功解决了安装过程中的错误。
1万+

被折叠的 条评论
为什么被折叠?



