Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 스트림셋
- 도커 elk
- 백준
- MySQL
- 정보처리기사
- 자바
- c++
- 푸시푸시
- python
- 앤서블 설치
- 도커
- mysql on docker
- java
- 도커 mysql
- nvidia docker
- C언어
- ansible install
- docker
- 데이터베이스
- streamsets 강의
- 스트림셋이란?
- 코딩
- c
- 데이트
- elk stack
- mysql docker
- 파이썬
- 도커 시작하기
- 클라우드
- 알고리즘
Archives
- Today
- Total
리그캣의 개발놀이터
[linux command] ps -ef grep 결과 ps 종료 본문
ps -ef | grep {name} 결과로 나오는 프로세스 종료하기
chrome 파일이 백단에서 종료되지 않고 돌아가고 있었다. 이럴때 어떻게 해야할까??
먼전 ps -ef | grep {name} 결과를 확인해보자
$ ps -ef | grep chrome
slackch+ 422 1 0 2019 ? 00:00:36 /home/slackchat/crawlexe/data/chromedriver --port=55978
slackch+ 455 422 0 2019 ? 00:01:51 [chrome] <defunct>
root 671 1 0 2019 ? 00:00:37 /home/slackchat/crawlexe/data/chromedriver --port=51238
root 685 671 0 2019 ? 00:00:45 [chrome] <defunct>
422, 455, 671 등의 ps id값을 가져와야지 kill할 수 있다 그러기에 process id를 가져와보자
ps와 grep 명령을 결합한 pgrep 명령을 이용하면 간단하게 가져올 수 있다.
$pgrep -f {name}
example
$pgrep -f chrome
422
455
671
이에 해당하는 process를 종료해보자
$kill -9 `pgrep -f {name}`
example
$kill -9 `pgrep -f chrome`
이때 작은따옴표 ' 대신 `를 사용해야한다.
'인프라 > 인프라관리' 카테고리의 다른 글
[linux] ssh 비밀번호 없이 접속 / 공개키 만들기 (0) | 2020.07.07 |
---|---|
virtualbox cli command 목록 (0) | 2020.06.20 |
[Linux] 가장 메모리를 많이 사용하는 상위 10개 프로세스 확인 (0) | 2020.05.07 |
apt-get update error : Reading package lists... DoneW: chmod 0700 of directory /var/lib/apt/lists/partial failed - (0) | 2020.02.17 |
install maven on centos7 / centos에 mvn 설치 (0) | 2020.01.23 |
Comments