yum error

2019. 2. 28. 09:39IT-OS/Linux

반응형


VMware 에서 power > suspend 걸었다가 다시 실행해서 yum 실행했더니... 이런 메세지만 나온다.



Existing lock /var/run/yum.pid: another copy is running as pid 17831.

Another app is currently holding the yum lock; waiting for it to exit...

  The other application is: PackageKit

    Memory :  89 M RSS (433 MB VSZ)

    Started: Thu Feb 28 09:07:39 2019 - 06:45 ago

    State  : Sleeping, pid: 17831



다른 process가 yum 실행중이고 나오지를 않아서 생기는 원인인듯~



yum process kill )


# ps -ef | grep yum  (프로세스 확인)



# kill -9 17831 (프로세스 죽이기) 



/var/run/yum.pid 삭제 )


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



이후에는 YUM 잘됨! ^^