Linux - Nginx - 프로 세 스 닫 기

6139 단어 killPSgrepawkaux
물론 명령 하나만 소개 하 는 것 이 이렇게 간단 하 다.
nginx 기본 작업 프로 세 스 만 들 기
root      2713     1  0 07:56 ?        00:00:00 nginx: master process ../sbin/nginx
nobody    2714  2713  0 07:56 ?        00:00:00 nginx: worker process

워 커 수정processes = 10, 여러 프로 세 스 를 만 듭 니 다.
#user nobody;
worker_processes  10;

#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

pid        logs/nginx.pid;

events {
    worker_connections  1024;
}
fuhui@ubuntu:/usr/local/nginx$ ps -ef | grep 'nginx' 
root      2713     1  0 07:56 ?        00:00:00 nginx: master process ../sbin/nginx
nobody    2747  2713  0 08:00 ?        00:00:00 nginx: worker process
nobody    2748  2713  0 08:00 ?        00:00:00 nginx: worker process
nobody    2749  2713  0 08:00 ?        00:00:00 nginx: worker process
nobody    2750  2713  0 08:00 ?        00:00:00 nginx: worker process
nobody    2751  2713  0 08:00 ?        00:00:00 nginx: worker process
nobody    2752  2713  0 08:00 ?        00:00:00 nginx: worker process
nobody    2753  2713  0 08:00 ?        00:00:00 nginx: worker process
nobody    2754  2713  0 08:00 ?        00:00:00 nginx: worker process
nobody    2755  2713  0 08:00 ?        00:00:00 nginx: worker process
nobody    2756  2713  0 08:00 ?        00:00:00 nginx: worker process
fuhui     2852  2332  0 08:29 pts/6    00:00:00 grep --color=auto nginx
       
fuhui@ubuntu:/usr/local/nginx$ sudo ps -ef | grep 'nginx' | awk '{kill -9 $2}' 

       
fuhui@ubuntu:/usr/local/nginx$ sudo kill ` ps -ef | grep 'nginx' | awk '{print $2}' `

To kill all Nginx Processes
kill $(ps aux | grep '[n]ginx' | awk '{print $2}')

"$() 효과 와 같 습 니 다" 를 사용 합 니 다.

좋은 웹페이지 즐겨찾기