railsにactiveadminというgemがあるのですが、本番環境でのみうまくいきません。
ローカル環境やherokuでは
http://hasenews.herokuapp.com/admin
のように、うまくいってましたが、awsで同じことをすると以下のようになります。
http://52.198.155.68/admin
その他のgemはうまく行っているので環境の違いに問題があると思うのですが、原因がわかりません。
以下がrailsのエラーログです。
comand
1[ec2-user@ip-10-0-0-121 ec_site]$ sudo tail -f log/production.log 2[3f994207-c94c-4430-8fab-1d6a8d807c02] bundler (2.2.21) lib/bundler/vendor/thor/lib/thor/invocation.rb:127:in `invoke_command' 3[3f994207-c94c-4430-8fab-1d6a8d807c02] bundler (2.2.21) lib/bundler/vendor/thor/lib/thor.rb:392:in `dispatch' 4[3f994207-c94c-4430-8fab-1d6a8d807c02] bundler (2.2.21) lib/bundler/cli.rb:30:in `dispatch' 5[3f994207-c94c-4430-8fab-1d6a8d807c02] bundler (2.2.21) lib/bundler/vendor/thor/lib/thor/base.rb:485:in `start' 6[3f994207-c94c-4430-8fab-1d6a8d807c02] bundler (2.2.21) lib/bundler/cli.rb:24:in `start' 7[3f994207-c94c-4430-8fab-1d6a8d807c02] bundler (2.2.21) exe/bundle:49:in `block in <top (required)>' 8[3f994207-c94c-4430-8fab-1d6a8d807c02] bundler (2.2.21) lib/bundler/friendly_errors.rb:128:in `with_friendly_errors' 9[3f994207-c94c-4430-8fab-1d6a8d807c02] bundler (2.2.21) exe/bundle:37:in `<top (required)>' 10[3f994207-c94c-4430-8fab-1d6a8d807c02] /home/ec2-user/.rbenv/versions/3.0.1/bin/bundle:23:in `load' 11[3f994207-c94c-4430-8fab-1d6a8d807c02] /home/ec2-user/.rbenv/versions/3.0.1/bin/bundle:23:in `<main>'
以下が/home/ec2-user/.rbenv/versions/3.0.1/bin/bundleの中身です
ruby
1#!/home/ec2-user/.rbenv/versions/3.0.1/bin/ruby 2# 3# This file was generated by RubyGems. 4# 5# The application 'bundler' is installed as part of a gem, and 6# this file is here to facilitate running it. 7# 8 9require 'rubygems' 10 11version = ">= 0.a" 12 13str = ARGV.first 14if str 15 str = str.b[/\A_(.*)_\z/, 1] 16 if str and Gem::Version.correct?(str) 17 version = str 18 ARGV.shift 19 end 20end 21 22if Gem.respond_to?(:activate_bin_path) 23load Gem.activate_bin_path('bundler', 'bundle', version) 24else 25gem "bundler", version 26load Gem.bin_path("bundler", "bundle", version) 27end
考えられる原因があれば教えてください
あなたの回答
tips
プレビュー