linux yum提示Loaded plugins: fastestmirror, security错误的解决方法

[[email protected] yum.repos.d]# yum install nfs-utils rpcbind -y

Loaded plugins: fastestmirror, security
Existing lock /var/run/yum.pid: another copy is running as pid 3517.
Another app is currently holding the yum lock; waiting for it to exit...
The other application is: yum
Memory : 24 M RSS (856 MB VSZ)
Started: Sun Dec 2 14:22:30 2018 - 10:05 ago
State : Traced/Stopped, pid: 3517
Another app is currently holding the yum lock; waiting for it to exit...
The other application is: yum
Memory : 24 M RSS (856 MB VSZ)
Started: Sun Dec 2 14:22:30 2018 - 10:07 ago
State : Traced/Stopped, pid: 3517

在yum使用过程中,有时会出现Loaded plugins错误,重启无效,经过百度发现只要删除/var/run/yum.pid就可以正常使用了,即rm -rf /var/run/yum.pid。

具体命令如下:

rm -rf /var/run/yum.pid

/sbin/service yum-updatesd restart

原文地址:https://www.cnblogs.com/su-root/p/10053502.html

时间: 2024-10-14 15:38:53

linux yum提示Loaded plugins: fastestmirror, security错误的解决方法的相关文章

Linux yum提示Loaded plugins错误的解决方法

yum是Linux软件包管理器,也叫yum源,在yum使用过程中,有时会出现Loaded plugins错误,重启无效,遇到这种情况该如何解决呢?下面就给大家介绍下Linux yum提示Loaded plugins错误的解决方法. 在linux中使用yum时出现如下错误: Loaded plugins: fastestmirror, security Existing lock /var/run/yum.pid: another copy is running as pid 4733. Anot

win7系统提示当前页面的脚本发生错误的解决方法

问题:服务器没问题,代码和svn一致,其他电脑OK,我的电脑就是不行,所以应该是电脑问题: 解决方法如下: 方法一: IE设置 1.打开IE浏览器,找到[设置]图标,打开[Internet 选项]: 2.打开[安全]选项,点击右下角的[将所有区域重置为默认级别],然后点击[应用] 3.选择[高级],点击[重置],然后勾选[删除个性化设置],点击[重置],后续按提示操作即可 方法二. 注册IE组件< 1.使用快捷键;Win+R;弹出[运行],输入:regsvr32 Actxprxy.dll,点击[

Error: Cannot retrieve metalink for repository: epel. 错误的解决方法

问题重现: 当配置epel源成功,yum update的时候出现如下错误: [[email protected] ~]# rpm -ivh http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm [[email protected] ~]# yum update Loaded plugins: fastestmirror, security Loading mirror speeds from cached

解决yum 不能更新问题 :yum 报错Loaded plugins: fastestmirror, refresh-packagekit, security

2018-07-02       21:43:13 Yum报错 [[email protected] yum.repos.d]# yum makecache Loaded plugins: fastestmirror, refresh-packagekit, security Loading mirror speeds from cached hostfile Error: Cannot find a valid baseurl for repo: elasticsearch-6.x [[ema

linux下yum命令出现Loaded plugins: fastestmirror

linux下yum命令出现Loaded plugins: fastestmirror yum install的时候提示:Loaded plugins: fastestmirror fastestmirror是yum的一个加速插件,这里是插件提示信息是插件不能用了. 不能用就先别用呗,禁用掉,先yum了再说. 1.修改插件的配置文件 # vi  /etc/yum/pluginconf.d/fastestmirror.conf enabled = 1//由1改为0,禁用该插件 ...........

CentOS 7 yum Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile

yum install nginx发生的错误 yum install nginx Loaded plugins: fastestmirror, ovl Loading mirror speeds from cached hostfile ..... No package nginx available. Error: Nothing to do 解决方法: 可能缺乏epelEPEL (Extra Packages for Enterprise Linux)是基于Fedora的一个项目,为“红帽系

【llinux】yum命令出现Loaded plugins: fastestmirror Determining fastest mirrors

在进行yum 安装的时候.报错了. Loaded plugins: fastestmirror Determining fastest mirrors fastestmirror是yum的一个加速插件,这里是插件提示信息是插件不能用了. 既然提示不能用了.那就禁用掉 1 修改插件的配置文件 vi /etc/yum/pluginconf.d/fastestmirror.conf enabled = 1//由1改为0,禁用该插件 2  修改yum的配置文件 vi /etc/yum.conf plug

fedora25 安装virtualbox5.1 出现提示Kernel driver not installed (rc=-1908) 错误的解决方法

fedora25 安装virtualbox5.1 出现提示Kernel driver not installed (rc=-1908) 错误的解决方法: $ sudo /usr/lib/virtualbox/vboxdrv.sh setup        vboxdrv.sh: Building VirtualBox kernel modules.             vboxdrv.sh: Starting VirtualBox services.

Jquery中使用setInterval和setTimeout会提示缺少对象的错误,解决方法如下:

直接在ready中调用其他方法,会提示缺少对象的错误,解决方法如下: 方法1. 应用jQuery的扩展可以解决这个问题. $(document).ready(function(){ $.extend({  show:function(){   alert("ready");  }});setInterval("show()",3000);}); 方法2. 指定定时执行的函数时不要使用引号和括号.  $(function(){function show(){   al