>  기사  >  운영 및 유지보수  >  Nginx의 일반적인 작업은 무엇입니까?

Nginx의 일반적인 작업은 무엇입니까?

WBOY
WBOY앞으로
2023-05-14 08:04:05621검색

Nginx의 일반적인 작업은 무엇입니까?

nginx.conf에서 구문 오류를 확인하세요

[root@localhost conf]# /usr/local/nginx/sbin/nginx  -tnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

구성 파일을 업데이트하여 적용하세요

[root@localhost conf]# /usr/local/nginx/sbin/nginx  -s  reload

nginx가 잘못 구성되었는지 확인하세요

[root@localhost sbin]# /usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.confnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

nginx 시작

[root@localhost sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

nginx 프로세스 보기

[root@localhost sbin]# ps -ef|grep nginxroot       4870      1  0 22:35 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nginx      4871   4870  0 22:35 ?        00:00:00 nginx: worker process
root       4873   2389  0 22:35 pts/0    00:00:00 grep --color=auto nginxs

위 내용은 Nginx의 일반적인 작업은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 yisu.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제