关于Linux操作yum下载中出现PID为xxx正在运行的问题
1、问题描述
请查看如下报错内容:
[root@xiaoaifu 桌面]# yum update
已加载插件:fastestmirror, langpacks
/var/run/yum.pid 已被锁定,PID 为 13482 的另一个程序正在运行。
Another app is currently holding the yum lock; waiting for it to exit...
另一个应用程序是:PackageKit
内存: 31 M RSS (1.5 GB VSZ)
已启动: Fri Oct 22 15:27:32 2021 - 00:23之前
状态 :睡眠中,进程ID:13482
Another app is currently holding the yum lock; waiting for it to exit...
另一个应用程序是:PackageKit
内存: 27 M RSS (1.4 GB VSZ)
已启动: Fri Oct 22 15:27:32 2021 - 00:25之前
状态 :睡眠中,进程ID:13482
Another app is currently holding the yum lock; waiting for it to exit...
另一个应用程序是:PackageKit
内存: 27 M RSS (1.4 GB VSZ)
已启动: Fri Oct 22 15:27:32 2021 - 00:28之前
状态 :睡眠中,进程ID:13482
在一开始我还以为是yum继续下载软件,但是仔细一看就是时间变了其他完全没有变化。
这是因为我们在配置yum仓库时,/var/run/yum.pid
被锁定了。
2、解决方法
再输入rm -f /var/run/yum.pid
即可。