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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.