nginx 서비스 구축

2010 단어
nginx 관련 명령 에 익숙 하지 않 습 니 다. nginx 명령 을 정리 하여 찾 아 볼 수 있 도록 합 니 다.
nginx brew 설치 nginx
Homebrew 는 패키지 관리자 로 패키지 를 독립 디 렉 터 리 에 설치 합 니 다 /usr/local디 렉 터 리 분석 / usr / local / etc / nginx / nginx. conf (설정 파일 경로) / usr / local / var / www (서버 기본 경로) / usr / local / cellar / nginx / 1.15.9 (설치 경로)
도움말 보기
➜  bin nginx -h
nginx version: nginx/1.15.9
Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives]

Options:
  -?,-h         : this help
  -v            : show version and exit
  -V            : show version and configure options then exit
  -t            : test configuration and exit
  -T            : test configuration, dump it and exit
  -q            : suppress non-error messages during configuration testing
  -s signal     : send signal to a master process: stop, quit, reopen, reload
  -p prefix     : set prefix path (default: /usr/local/Cellar/nginx/1.15.9/)
  -c filename   : set configuration file (default: /usr/local/etc/nginx/nginx.conf)
  -g directives : set global directives out of configuration file

nginx 시작 관리
nginx 명령 관리 사용 하기
시동 을 걸다
sudo nginx

멈추다
sudo nginx -s  stop

다시 시작
sudo nginx -s  reload

프로 세 스 번호 관리 사용
nginx 프로 세 스 보기
ps -ef|grep nginx

ps 프로 세 스 보기 명령 - ef 표준 디 스 플레이 프로 세 스 형식
➜  bin ps -ef|grep nginx
    0 17523     1   0  7:29   ??         0:00.00 nginx: master process nginx
   -2 17524 17523   0  7:29   ??         0:00.00 nginx: worker process
  501 17616 14704   0  7:46   ttys000    0:00.00 grep --color=auto --exclude-dir=.bzr --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.hg --exclude-dir=.svn nginx

프로 세 스 번호 찾기 nginx:master: 17523
적당 한 때 에 멈추다
kill -QUIT 17523

즉시 정지 하 다
Kill -TERM 17523

즉시 정지 하 다
Kill -INT 17523

좋은 웹페이지 즐겨찾기