先任の人が AWS EC2 上に構築して capistorano ですでにデプロイされてる nginx + Rails サーバーがあるって EC2 を再起動してとき nginx は自動するのですが unicorn が自動で立ち上がらず 502 エラーになってしまいます
unicorn を自動起動するにはどうすればいいのでしょうか
試したこと
Rails 5 + Unicorn + Nginx 環境構築メモ(自動起動設定も)
を参考にして
EC2 内の /etc/init.d/unicorn を
export HOME, RAILS_ROOT_DIR の部分だけかきかえて以下のように作成
#!/bin/bash # chkconfig: 345 90 20 # description: Rails application # processname: unicorn RAILS_ENV=production SERVICE=$RAILS_ENV export HOME="/home/ec2-user" source ~/.bashrc source ~/.bash_profile RAILS_ROOT_DIR="/var/www/manage/current" PID=${RAILS_ROOT_DIR}/tmp/unicorn.pid UNICORN_CONF=${RAILS_ROOT_DIR}/config/unicorn.rb UNICORN_ALIVE=`ps aux|grep '${UNICORN_CONF}'|grep -v grep|wc -l` start() { if [ $UNICORN_ALIVE = 0 ]; then rm -f $PID fi if [ -e ${PID} ]; then echo "${SERVICE} already started" exit 1 fi echo "start ${SERVICE}" source /etc/environment cd ${RAILS_ROOT_DIR} bundle exec unicorn_rails -c ${UNICORN_CONF} -E ${RAILS_ENV} -D } stop() { if [ ! -e ${PID} ]; then echo "${SERVICE} not started" exit 1 fi echo "stop ${SERVICE}" kill -QUIT `cat ${PID}` } force_stop() { if [ ! -e ${PID} ]; then echo "${SERVICE} not started" exit 1 fi echo "stop ${SERVICE}" kill -INT `cat ${PID}` } reload() { if [ ! -e ${PID} ]; then echo "${SERVICE} not started" start exit 0 fi echo "reload ${SERVICE}" kill -USR2 `cat ${PID}` } restart() { if [ -e ${PID} ]; then stop sleep 3 fi start } case "$1" in start) start ;; stop) stop ;; force-stop) force_stop ;; reload) reload ;; restart) restart ;; *) echo "Syntax Error: release [start|stop|force-stop|reload|restart]" ;; esac
その後サービス起動コマンドをたたくと以下のようなエラーが出ました
$ sudo chmod 755 /etc/init.d/unicorn $ sudo chkconfig unicorn on $ sudo service unicorn start start unicorn /var/www/manage/shared/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/lib/bootstrap-sass/version.rb:2: warning: already initialized constant Bootstrap::VERSION /var/www/manage/shared/bundle/ruby/2.6.0/gems/bootstrap-4.4.1/lib/bootstrap/version.rb:4: warning: previous definition of VERSION was here /var/www/manage/shared/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/lib/bootstrap-sass/version.rb:3: warning: already initialized constant Bootstrap::BOOTSTRAP_SHA /var/www/manage/shared/bundle/ruby/2.6.0/gems/bootstrap-4.4.1/lib/bootstrap/version.rb:5: warning: previous definition of BOOTSTRAP_SHA was here rake aborted! Don't know how to build task 'unicorn_rails:start' (See the list of available tasks with `rake --tasks`) /var/www/manage/shared/bundle/ruby/2.6.0/gems/rake-13.0.1/exe/rake:27:in `<top (required)>' /home/ec2-user/.rbenv/versions/2.6.5/bin/bundle:23:in `load' /home/ec2-user/.rbenv/versions/2.6.5/bin/bundle:23:in `<main>' (See full trace by running task with --trace)
複雑すぎて何をやろうとしてるのかさっぱりわからないんですが
何をやろうとしていてどういうエラーが出てるんでしょうか
EC2 内の /var/www/manage/current で
bundle exec unicorn_rails -c config/unicorn.rb -E production -D
を実行すると起動するので
/etc/init.d にこれをかくだけだとだめなんでしょうか…
環境は以下です
AWS EC2 AmazonLinux2 ruby '2.6.5' rails (6.0.2.1) unicorn (5.5.2) capistrano (3.11.2)
です
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。