前提・実現したいこと
ご覧いただきありがとうございます。現在独学でRails tutorialを勉強している者です。
より実践に近い形ということでサーバーを借り、rails tutorial 2週目を学習中に起こった問題です。
13.4.4 本番環境での画像アップロード
rails tutorialの上記を学習中、本番環境への画像アップロードを、conohaのオブジェクトストレージを契約し実装しようとしていたところ、今まで問題なく通っていた
bash
1bundle exec cap production deploy
こちらのコマンドがunicorn:restartでエラーが出るようになりました。
現在までほぼ問題なく通っていたコマンドです、エラーメッセージを見ても、下記のgem
- carrierwave 1.2.2
- fog 1.42
これらが干渉しているのかな?と思い3日間さまざまな手を試しましたが、まったく解決できそうにありません。
問題解決のゴールとしては、今までのdeployが問題なくできるようになり、conohaストレージへの本番環境への画像アップロード実装まで勉強したいと考えています。
エラーログを注視する毎日でしたが、どうしても八方塞がりの状況です。
どうかお力添えいただけますと幸いです。
発生している問題・エラーメッセージ
bash
1[user]@user:/mnt/c/rails_dev/rails_tutorial/sample_app$ bundle exec cap production deploy 2Enter passphrase for /home/[user]/.ssh/vps/id_rsa: 3 4~~~~~~~ 5 600:36 unicorn:restart 7 01 $HOME/.rbenv/bin/rbenv exec bundle exec unicorn -c /var/www/sample_app/current/config/unicorn/production.rb -E production… 8 01 master failed to start, check stderr log for details 9#<Thread:0x00007ff67c155890@/home/user/sample_app/vendor/bundle/ruby/2.6.0/gems/sshkit-1.21.0/lib/sshkit/runners/parallel.rb:10 run> terminated with exception (report_on_exception is true): 10Traceback (most recent call last): 11~~~~~~~ 121.21.0/lib/sshkit/backends/abstract.rb:148:in `block in create_command_and_execute' 13 1: from /home/user/sample_app/vendor/bundle/ruby/2.6.0/gems/sshkit-1.21.0/lib/sshkit/backends/netssh.rb:170:in `execute_command' 14/home/user/sample_app/vendor/bundle/ruby/2.6.0/gems/sshkit-1.21.0/lib/sshkit/command.rb:97:in `exit_status=': bundle exit status: 1 (SSHKit::Command::Failed) 15bundle stdout: Nothing written 16bundle stderr: master failed to start, check stderr log for details 17 1: from /home/user/sample_app/vendor/bundle/ruby/2.6.0/gems/sshkit-1.21.0/lib/sshkit/runners/parallel.rb:11:in `block (2 levels) in execute' 18/home/user/sample_app/vendor/bundle/ruby/2.6.0/gems/sshkit-1.21.0/lib/sshkit/runners/parallel.rb:15:in `rescue in block (2 levels) in execute': Exception while executing as user@160.*.*.*: bundle exit status: 1 (SSHKit::Runner::ExecuteError) 19bundle stdout: Nothing written 20bundle stderr: master failed to start, check stderr log for details 21(Backtrace restricted to imported tasks) 22cap aborted! 23SSHKit::Runner::ExecuteError: Exception while executing as user@160.*.*.*: bundle exit status: 1 24bundle stdout: Nothing written 25bundle stderr: master failed to start, check stderr log for details 26 27 28Caused by: 29SSHKit::Command::Failed: bundle exit status: 1 30bundle stdout: Nothing written 31bundle stderr: master failed to start, check stderr log for details 32/mnt/c/rails_dev/rails_tutorial/sample_app/lib/capistrano/tasks/unicorn.rb:11:in `block in start_unicorn' 33/mnt/c/rails_dev/rails_tutorial/sample_app/lib/capistrano/tasks/unicorn.rb:10:in `start_unicorn' 34/mnt/c/rails_dev/rails_tutorial/sample_app/lib/capistrano/tasks/unicorn.rb:53:in `block (3 levels) in <top (required)>' 35Tasks: TOP => unicorn:restart 36(See full trace by running task with --trace) 37The deploy has failed with an error: Exception while executing as user@160.*.*.*: bundle exit status: 1 38bundle stdout: Nothing written 39bundle stderr: master failed to start, check stderr log for details 40 41 42** DEPLOY FAILED 43** Refer to log/capistrano.log for details. Here are the last 20 lines: 44
上記のunicorn:restartがどうしても解決しません。
(途中、色々手を試しているうちにbundle installも通らなくなりましたが、本番環境にcurlを導入したりと色々やって解決しました)
問題に関連していると思われるソースコード
Gemfile
ruby
1source 'https://rubygems.org' 2 3gem 'rails', '5.2.3' 4gem 'bcrypt', '3.1.12' 5gem 'carrierwave', '1.2.2'# 13.4.1 画像投稿gem 6gem 'mini_magick', '4.7.0'# 13.4.1 画像加工?gem 7gem 'faker', '1.7.3'# 10.3.3 サンプルデータ投入のgem 8gem 'will_paginate', '3.1.7'# 10.3.3 ページネーションのためのgem。バグのため3.1.6からバージョンアップ 9gem 'bootstrap-will_paginate', '1.0.0'# 10.3.3 ページネーションのためのgem 10gem 'dotenv-rails'# carrierwave.rb用に環境変数を管理するために入れたgem 11~~~~~~~ 12 13group :development do 14 gem 'web-console', '3.5.1' 15 gem 'listen', '3.1.5' 16 gem 'spring', '2.0.2' 17 gem 'spring-watcher-listen', '2.0.1' 18 gem 'capistrano' 19 gem 'capistrano-bundler' 20 gem 'capistrano-rails' 21 gem 'capistrano-rbenv' 22 23 gem 'ed25519' 24 gem 'bcrypt_pbkdf' 25 26~~~~~~~ 27 28group :production do 29 gem 'pg', '0.20.0' 30 gem 'fog', '1.42'# 13.4.1 本番環境でクラウドストレージへ保存するのに便利なgem 31end 32 33~~~~~~~ 34 35group :production, :staging do 36 gem 'mysql2' 37 gem 'unicorn', '5.4.1'
capistrano.log(最後の3行)
capistrano
1 INFO [ecdeef74] Running $HOME/.rbenv/bin/rbenv exec bundle exec unicorn -c /var/www/sample_app/current/config/unicorn/production.rb -E production -D as user@160.*.*.* 2 DEBUG [ecdeef74] Command: cd /var/www/sample_app/current && ( export RBENV_ROOT="$HOME/.rbenv" RBENV_VERSION="2.6.4" ; $HOME/.rbenv/bin/rbenv exec bundle exec unicorn -c /var/www/sample_app/current/config/unicorn/production.rb -E production -D ) 3 DEBUG [ecdeef74] master failed to start, check stderr log for details
.carrierwave.rb
ruby
1# 現在はバグ検証のため、【.carrierwave.rb】としています 2 3require 'carrierwave/storage/abstract' 4require 'carrierwave/storage/file' 5require 'carrierwave/storage/fog' 6 7if Rails.env.production? 8 CarrierWave.configure do |config| 9 10 # config.fog_provider = 'fog' 11 config.fog_credentials = { 12 provider: 'OpenStack', 13 openstack_tenant: ENV['CONOHA_TENANT_NAME'], 14 openstack_username: ENV['CONOHA_USERNAME'], 15 openstack_api_key: ENV['CONOHA_API_PASSWORD'], 16 openstack_auth_url: ENV['CONOHA_API_AUTH_URL'] + '/tokens', 17 } 18 config.fog_directory = ENV['CONOHA_CONTAINER_NAME'] 19 config.fog_public = false 20 config.asset_host = ENV['CONOHA_ASSET_HOST'] + '/' + ENV['CONOHA_CONTAINER_NAME'] 21 # config.fog_attributes = { cache_control: "public, max-age=#{365.days.to_i}" } # optional, defaults to {} 22 end 23 24 # 日本語ファイル名の設定 25 CarrierWave::SanitizedFile.sanitize_regexp = /[^[:word:].\-+]/ 26 27end 28
unicorn.logにあるCarrierWave::Storage::Fogが怪しい??
本番環境に残っている下記のunicorn.log
I, [2020-03-15T20:35:24.812163 #12624] INFO -- : Refreshing Gem list bundler: failed to load command: unicorn (/var/www/sample_app/shared/bundle/ruby/2.6.0/bin/unicorn) NameError: uninitialized constant CarrierWave::Storage::Fog (eval):1:in `storage' /var/www/sample_app/shared/bundle/ruby/2.6.0/gems/carrierwave-1.2.2/lib/carrierwave/uploader/configuration.rb:78:in `eval' /var/www/sample_app/shared/bundle/ruby/2.6.0/gems/carrierwave-1.2.2/lib/carrierwave/uploader/configuration.rb:78:in `storage' /var/www/sample_app/releases/20200315113501/app/uploaders/picture_uploader.rb:14:in `<class:PictureUploader>' ~~~~~~~ config.ru:4:in `require_relative' config.ru:4:in `block in <main>' /var/www/sample_app/shared/bundle/ruby/2.6.0/gems/rack-2.2.2/lib/rack/builder.rb:125:in `instance_eval' /var/www/sample_app/shared/bundle/ruby/2.6.0/gems/rack-2.2.2/lib/rack/builder.rb:125:in `initialize' config.ru:1:in `new' config.ru:1:in `<main>' /var/www/sample_app/shared/bundle/ruby/2.6.0/gems/unicorn-5.4.1/lib/unicorn.rb:56:in `eval' /var/www/sample_app/shared/bundle/ruby/2.6.0/gems/unicorn-5.4.1/lib/unicorn.rb:56:in `block in builder' /var/www/sample_app/shared/bundle/ruby/2.6.0/gems/unicorn-5.4.1/lib/unicorn/http_server.rb:795:in `build_app!' /var/www/sample_app/shared/bundle/ruby/2.6.0/gems/unicorn-5.4.1/lib/unicorn/http_server.rb:139:in `start' /var/www/sample_app/shared/bundle/ruby/2.6.0/gems/unicorn-5.4.1/bin/unicorn:126:in `<top (required)>' /var/www/sample_app/shared/bundle/ruby/2.6.0/bin/unicorn:23:in `load' /var/www/sample_app/shared/bundle/ruby/2.6.0/bin/unicorn:23:in `<top (required)>'
こちらがどうも怪しいとは思っているのですが、解決方法が全くわかりません…
試したこと
- 本番環境の unicorn.pid の削除
- fog や fog-aws のgem unistall(conohaのオブジェクトストレージへどうやって保存するか試行錯誤していたところでfog-aws等をinstallしていました)
- carrierwave.rbのコメントアウト等
ほかにも色々試行錯誤しましたが、だめでした…
補足情報(FW/ツールのバージョンなど)
- ubuntu(WSL) 18.04.3
- Ruby 2.6.4
- Rails 5.2.3
- capistrano 3.12.0
- unicorn 5.4.1
本番環境
- さくらVPS(CentOS7)
どうか皆様お力添えいただけますと幸いです。
どうぞよろしくお願いいたします。
文字数が10000文字までしか入力できませんので、ほかのファイル情報等は追記させていただきます。
回答1件
あなたの回答
tips
プレビュー