2016년 1월 28일 목요일

nginx CLI command

http://nginx.org/en/docs/beginners_guide.html

"nginx -s [signal]"

$nginx -s stop         // fast shutdown
$nginx -s quit          // graceful shutdown
$nginx -s reload      // reloading the configuration files
$nginx -s reopen     // reopen the log files

//kill nginx process
$ ps -ax | grep nginx
21074 ??         0:00.00 nginx: master process nginx
21075 ??         0:00.00 nginx: worker process

21123 ttys000    0:00.01 grep nginx

$kill -s QUIT 21074
(kill master process)

댓글 없음:

댓글 쓰기

JIRA Plugin - ScriptRunner 소개 #2

관련 글 소개 #1:  https://pineoc.blogspot.com/2019/03/scriptrunner-1.html ScriptRunner 소개 #2 지난 글에서는 Behaviours를 보았고 다음 내용인 콘솔, 리스너 등을 ...