NginxとUnicornの起動に関するコマンド集


はじめに

Amazon Linux 2にてNginxやUnicornを起動したり停止したりするコマンド集です。
忘れないために、こちらにまとめてメモしておきます。

Nginx

起動

$ sudo systemctl start nginx

停止

$ sudo systemctl stop nginx

再起動

$ sudo systemctl restart nginx

起動確認

$ sudo systemctl status nginx

Unicorn

起動

$ bundle exec unicorn_rails -c config/unicorn.conf.rb -D -E production

停止

$ kill -QUIT `cat /path/to/unicorn.pid`

起動確認

$ ps -ef | grep unicorn | grep -v grep