쉘프로그래밍강좌105: 센드메일프로세스(sendmail) 한번에 모두 죽이기
작성자 정보
- 관리자 작성
- 작성일
컨텐츠 정보
- 1,483 조회
- 0 추천
-
목록
본문
쉘프로그래밍강좌105: 센드메일프로세스(sendmail) 한번에 모두 죽이기
이번에는 sendmail프로세스를 모두 한번에 죽이는 예를 보겠습니다.
[root@RockyLinux01 test]# cat /sbin/prokill #!/bin/bash
ps -ef | grep $1 | awk '{print $2}' | xargs kill -9 {} [root@RockyLinux01 test]# |
위의 httpd와 동일한 방법으로 "prokill sendmail"이라고 하시면 됩니다.
sendmail을 모두 죽인 후에 다시 ps로 실행되어있는 sendmail이 존재하는가를 확인 하였습니다.
[root@file root]# ps -ef | grep sendmail root 2610 1 0 13:12 ? 00:00:00 [sendmail] root 2612 2610 1 0 13:12 ? 00:00:00 [sendmail] root 2613 2610 1 0 13:12 ? 00:00:00 [sendmail] [root@file root]# [root@file root]# prokill sendmail Killed [root@file root]# [root@file root]# ps -ef | grep sendmail [root@file root]# |
“prokill sendmail”을 실행한 이후에 sendmail프로세스는 남아있지 않았습니다.
이제 여러분들의 시스템관리에 prokill을 직접 만들어서 사용해 보시기 바랍니다.
관련자료
-
이전
-
다음