centos 下yum lock的解决办法
centos5.5下yum install的时候,报了一堆错误,如下:
Another app is currently holding the yum lock; waiting for it to exit...
The other application is: yum
Memory : 38 M RSS ( 37 MB VSZ)
Started:Sta Jul 24 16:28:58 2010 - 1:37:07 ago
State : Sleeping, pid: 13020
看来是有一个进程正在执行yum,于是采用常规的处理方式
1。注销:结果无效
2。重启:无效
3。虚机重启:还是无效
这还真怪了啊,看来linux和windows就是不一样,于是查了点资料,发现在系统初始化的时候,是还有这个进程的。
解决办法:
rm -f /var/run/yum.pid
/sbin/service yum-updatesd restart
Stopping yum-updatesd: [ OK ]
Starting yum-updatesd: [ OK ]
另外有人说用/sbin/service yum-updatesd stop 也不管用,原因是你禁止了update但是系统启动的时候还是会有这个进程。