※現在リダイレクトにて新サイトへ移行中です
parudou
更新日:2018/10/23
Nginxコマンド一覧(CentOS7 早見表)
CentOS7でよく使うコマンドをまとめました。
設定ファイルの場所
/etc/nginx/
/etc/nginx/nginx.conf
/etc/nginx/conf.d
ログの場所
/var/log/nginx/
/var/log/nginx/access.log
/var/log/nginx/error.log
起動
systemctl start nginx
再起動
systemctl restart nginx
一度完全に停止するので、一瞬停止状態になる。
再読み込み
systemctl reload nginx
停止せずに新しい設定を読み込む。
自動起動設定
ON
systemctl enable nginx.service
OFF
systemctl disable nginx.service
設定ON・OFFの確認
systemctl list-unit-files -t service | grep nginx
停止
systemctl stop nginx
もしくは
nginx -s stop
(ただちに停止)
nginx -s quit
(処理完了後に停止)
バージョン確認
nginx -v
※簡易
nginx -V
※組み込みモジュールまで表示
構文チェック
nginx -t
--
一度設定すれば、あとはログを見る程度になります。
エラーログは定期的に見る癖を付けておきたい。
是非ご感想・ご指摘等をください。