Nginx 입문 부터 실전 까지 (3): 상용 명령

2100 단어 Nginx
앞 순서: Nginx 입문 부터 실전 까지 (1): Nginx 입문 부터 실전 까지 소개 (2): Linux 설치 Nginx
Nginx 상용 명령
1. 버 전 번호 보기
[root@localhost sbin]# ./nginx -v
nginx version: nginx/1.12.2

2. nginx 시작
[root@localhost sbin]# ./nginx
[root@localhost sbin]# ps -ef | grep nginx
root     17340     1  0 13:10 ?        00:00:00 nginx: master process ./nginx
nobody   17341 17340  0 13:10 ?        00:00:00 nginx: worker process
root     17343 13527  0 13:10 pts/0    00:00:00 grep --color=auto nginx

3. nginx 닫 기
[root@localhost sbin]# ./nginx -s stop
[root@localhost sbin]# ps -ef | grep nginx
root     17330 13527  0 13:10 pts/0    00:00:00 grep --color=auto nginx

4. nginx 다시 불 러 오기 (프로필 수정 다시 불 러 오기)
[root@localhost sbin]# ./nginx -s reload
[root@localhost sbin]# ps -ef | grep nginx
root     17340     1  0 13:10 ?        00:00:00 nginx: master process ./nginx
nobody   17358 17340  0 13:12 ?        00:00:00 nginx: worker process
root     17360 13527  0 13:12 pts/0    00:00:00 grep --color=auto nginx

좋은 웹페이지 즐겨찾기