unicorn起動時の凡ミス(bundler: failed to load command: unicorn_rails)
はじめに
AWSでポートフォリオをデプロイする事ができました。
デプロイするのに様々なエラーがあったので復習のために投稿します。
今回はunicorn起動時に起きたエラーです。
bundler: failed to load command: unicorn_rails
EC2内
[ec2-user@ip-10-0-0-53 <リポジトリ名>]$ bundle exec unicorn_rails -c /var/www/rails/アプリ名/config/unicorn.conf.rb -D -E production
[ec2-user@ip-10-0-0-53 <リポジトリ名>]$ bundle exec unicorn_rails -c /var/www/rails/アプリ名/config/unicorn.conf.rb -D -E production
このようにEC2内で起動コマンドをしました。
bundler: failed to load command: unicorn_rails (/home/ec2-user/.rbenv/versions/2.6.5/bin/unicorn_rails)
rubygems_integration.rb:364:in `block in replace_bin_path': can't find executable unicorn_rails for gem unicorn. unicorn is not currently included in the bundle, perhaps you meant to add it to your Gemfile? (Gem::Exception)
1つづつエラーを見ていきます。
bundler: failed to load command: unicorn_rails (/home/ec2-user/.rbenv/versions/2.6.5/bin/unicorn_rails)
コマンドの読み込みに失敗しました:unicorn_rails
これは単純に何かのエラーで読み込めませんでしたよと言われています。
もう1つのエラーが原因が記述されています。
rubygems_integration.rb:364:in `block in replace_bin_path': can't find executable unicorn_rails for gem unicorn. unicorn is not currently included in the bundle, perhaps you meant to add it to your Gemfile? (Gem::Exception)
和訳サイトで確認すると強気な和訳が返されました(笑)
単純にgemをインストールしてないだけでした。
確認作業
gemのディレクトリーを確認します。
[ec2-user@ip-10-0-0-53 <リポジトリ名>]$ vi Gemfile
テキストエディター開くコマンドで確認することができます。
#省略
gem 'pry-rails'
gem 'kaminari'
gem 'ransack'
gem 'gretel'
1番下には記述されていませんでした。
ここで記述していきます。
iコマンドを押すと記述できるようになります。
group :production, :staging do
gem 'unicorn'
end
記述した後:wqで編集完了。
[ec2-user@ip-10-0-0-53 <リポジトリ名>]$ gem install bundler
[ec2-user@ip-10-0-0-53 <リポジトリ名>]$ bundle install
すでにunicornの設定はできているので、最初の起動コマンドを押して起動します。
最後に
慎重にやっていたらミスらないと思うので確実にこなしていきたいと思います。
Author And Source
この問題について(unicorn起動時の凡ミス(bundler: failed to load command: unicorn_rails)), 我々は、より多くの情報をここで見つけました https://qiita.com/N396184501/items/abc8ee63a6eec3f0263f著者帰属:元の著者の情報は、元の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 .