【Linux】CentOS7中yumbackend.py进程的结束方法

环境:

CentOS Linux release 7.3.1611 (Core)

今天启动这个不怎么用的机器,才启动,就发现后台的yum无法进行安装,持续报这个错误

Loaded plugins: fastestmirror, langpacks
Existing lock /var/run/yum.pid: another copy is running as pid 3138.
Another app is currently holding the yum lock; waiting for it to exit...
  The other application is: PackageKit
    Memory : 117 M RSS (447 MB VSZ)
    Started: Sun Nov 25 21:16:41 2018 - 05:04 ago
    State  : Sleeping, pid: 3138

 他提示被这个3138进程给锁了

[root@centos7 ~]# ps -ef | grep yum
root       3138   1550 14 21:16 ?        00:00:49 /usr/bin/python /usr/share/PackageKit/helpers/yum/yumBackend.py 

那就尝试kill掉他,但发现不行,kill掉后,还会自动启动

查了下,这个进程主要就是创建桌面上的图标等相关图形化的进程

相关包是这个:PackageKit

用yum来将他移除

# yum remove PackageKit -y

发现进程夯住,还是因为刚才的进程,

kill -9 新的yumBackend.py 这个pid

kill掉后,夯住的进程会自动启动,将他清除掉

......

Removed:
  PackageKit.x86_64 0:1.0.7-6.el7.centos        

.....                                                                                   

Dependency Removed:
  PackageKit-yum.x86_64 0:1.0.7-6.el7.centos                      gnome-packagekit.x86_64 0:3.14.3-7.el7                           
  gnome-packagekit-common.x86_64 0:3.14.3-7.el7                   gnome-packagekit-installer.x86_64 0:3.14.3-7.el7                 
  gnome-packagekit-updater.x86_64 0:3.14.3-7.el7                  gnome-software.x86_64 0:3.14.7-2.el7                             

Complete!

再次查看,进程成功干掉

[root@centos7 ~]# ps -ef | grep yum
root       3818   3084  0 21:31 pts/0    00:00:00 grep --color=auto yum

 

这个yumBackend.py占用了很高的cpu和网络的带宽。如果没有用的话,建议干掉

 

你可能感兴趣的:(linux相关)