취미와 밥줄사이

[ CentOS 7 ] 에러: Another app is currently holding the yum lock; 본문

OS/Linux

[ CentOS 7 ] 에러: Another app is currently holding the yum lock;

취미와 밥줄사이 2022. 3. 8. 00:35

sudo yum update 명령어를 통해 패키지 업데이트를 시도하는 과정에서 Another app is currently holding.... 에러 메시지가 발생하며 업데이트가 진행되지 않았다.

 

실행중인 yum process를 kill 하니 정상적으로 동작하였다.

 

해결방법

# yum 프로세스 번호 확인하기
ps -ef | grep yum

# 실행중인 yum process를 kill
kill -9 [yum process id]

 

 

REFERENCE

https://bono915.tistory.com/entry/Linux-%EB%A6%AC%EB%88%85%EC%8A%A4-yum-%EC%98%A4%EB%A5%98-Another-app-is-currently-holding-the-yum-lock-waiting-for-it-to-exit

 

[Linux] 리눅스 yum 오류 Another app is currently holding the yum lock; waiting for it to exit...

리눅스(Linux)에서 yum을 실행하다 보면 아래 그림과 같은 오류가 날때가 있습니다. 방법은 간단합니다. 현재 사용중인 프로세스를 제거하거나 실행중인 yum을 제거하면 됩니다. 1) 해결책 1 : yum 프

bono915.tistory.com