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
$ sudo systemctl start nginx
$ sudo systemctl stop nginx
$ sudo systemctl restart nginx
$ sudo systemctl status nginx
起動
$ 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
Author And Source
この問題について(NginxとUnicornの起動に関するコマンド集), 我々は、より多くの情報をここで見つけました https://qiita.com/tabby_k/items/8803b3d4e52d17c34987著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .