unicornとNginxをリロード&リスタートするシェルスクリプト
需要があるかは不明(多分ない)
いちいちコマンド打つのが大変だった
allrestart.sh
#!/bin/sh
echo "allrestart.sh START"
#unicorn
ps -ef | grep unicorn | grep -v grep
kill -QUIT `cat tmp/unicorn.pid`
echo "unicorn停止中......"
sleep 5;
#unicorn-start
bundle exec unicorn_rails -c config/unicorn.rb -E production -D
#nginx
sudo service nginx reload
sudo service nginx restart
echo "--------------------------------------------------"
echo "NOW STATUS"
ps -ef | grep unicorn | grep -v grep
sudo service nginx status
echo "--------------------------------------------------"
echo "allrestart.sh FINISH"
アプリがあるディレクトリに作っといて
$ sh allrestart.sh
Author And Source
この問題について(unicornとNginxをリロード&リスタートするシェルスクリプト), 我々は、より多くの情報をここで見つけました https://qiita.com/fujitora/items/8aa43232b6987195d3a0著者帰属:元の著者の情報は、元の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 .