ホームページ  >  記事  >  運用・保守  >  Nginx の一般的な操作は何ですか?

Nginx の一般的な操作は何ですか?

WBOY
WBOY転載
2023-05-14 08:04:05579ブラウズ

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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はyisu.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。