Linux工作笔记026---Centos7.3 yum提示Another app is currently holding the yum lock; waiting for it to exit.

版权声明:本文为博主原创文章,未经博主credreamer 允许不得转载 违者追究法律责任。 https://blog.csdn.net/lidew521/article/details/82714277

  JAVA技术交流QQ群:170933152 

这个问题是由于,上午通过堡垒机,装着,然后到饭点了,去吃饭,

吃饭回来,链接超时,然后装着的东西就卡在那了...

出现了这个问题

使用yum安装计划任务功能,结果提示:

# yum -y install vixie-cron
Loaded plugins: fastestmirror, refresh-packagekit, security
Existing lock /var/run/yum.pid: another copy is running as pid 25960.
Another app is currently holding the yum lock; waiting for it to exit...
  •  

可能是系统自动升级正在运行,yum在锁定状态中。 
已经有一个yum进程在运行了,使用kill干掉它:

# kill -s 9 25960
# ps aux|grep yum
root      6744  0.0  0.0 103260   900 pts/1    S+   14:59   0:00 grep yum
root     25960  0.0  0.0      0     0 ?        Z    Sep19   0:01 [yumBackend.py] <defunct>
  •  

很遗憾,kill对付不了它,那怎么办呢?

可以通过强制关掉yum进程:

#rm -f /var/run/yum.pid

猜你喜欢

转载自blog.csdn.net/lidew521/article/details/82714277
今日推荐