0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

master failed to start, check stderr log for detailsのエラーに対処する

Posted at

##はじめに
EC2を使って、railsアプリをデプロイさせようとするもUnicornがうまく起動しなかったので記事にしました。

##エラー分
表題にも記載しているとおり下記のようなエラーに遭遇しました。

$ unicorn_rails -c /var/www/rails/アプリ名/config/unicorn.conf.rb -D -E production #実行

master failed to start, check stderr log for details #エラー分

##解決策
Unicornを起動させるコマンドの先頭にbundle execをつけることで無事に起動しました。

$ bundle exec unicorn_rails -c /var/www/rails/アプリ名/config/unicorn.conf.rb -D -E production

##原因
log/unicorn.logをチェックしたところ、『 You have already activated unicorn 5.5.3, but your Gemfile requires unicorn 5.4.1.』と書かれていたので、おそらくbundlerでインストールしたものとGemfileに書かれているunicornのバージョンが違うことによるものだろうと

##bundle execって何?
これを先頭につけることによって、Bundlerが管理するgemを利用できる状態でコマンドを実行することになるらしい。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?