为什么乘客说我的宝石'json'找不到,而我的宝石列表却显示它?



我在我的apache服务器上的rails上获得了以下错误消息:

It looks like Bundler could not find a gem. This is probably because your
application is being run under a different environment than it's supposed to.
Please check the following:
 * Is this app supposed to be run as the `rvm_admin` user?
 * Is this app being run on the correct Ruby interpreter? Below you will
   see which Ruby interpreter Phusion Passenger attempted to use.
 * Are you using RVM? Please check whether the correct gemset is being used.
 * If all of the above fails, try resetting your RVM gemsets:
   https://github.com/phusion/passenger/wiki/Resetting-RVM-gemsets
-------- The exception is as follows: -------
Could not find json-1.8.1 in any of the sources (Bundler::GemNotFound)

这很奇怪,因为当我执行宝石列表命令时:

rvm_admin@myserver:~$ gem list
*** LOCAL GEMS ***
actionmailer (3.2.16)
actionpack (3.2.16)
activemodel (3.2.16)
activerecord (3.2.16)
activeresource (3.2.16)
activesupport (3.2.16)
annotate (2.6.1)
arel (3.0.3)
atomic (1.1.14)
bcrypt-ruby (3.1.2)
bigdecimal (1.2.3)
builder (3.0.4)
bundler (1.5.2)
capistrano (3.0.1)
chunky_png (1.2.9)
coffee-rails (3.2.1)
coffee-script (2.2.0)
coffee-script-source (1.7.0)
compass (0.12.2)
compass-rails (1.1.3)
declarative_authorization (0.5.7)
devise (3.2.2)
diff-lcs (1.2.5)
erubis (2.7.0)
execjs (2.0.2)
faker (1.2.0)
fssm (0.2.10)
haml (4.0.5)
haml-rails (0.4)
hike (1.2.3)
i18n (0.6.9)
io-console (0.4.2)
journey (1.0.4)
jquery-rails (3.1.0)
json (1.8.1)
libv8 (3.16.14.3 x86_64-linux)
mail (2.5.4)
mime-types (1.25.1)
minitest (4.7.5)
multi_json (1.8.4)
net-scp (1.1.2)
net-ssh (2.7.0)
orm_adapter (0.5.0)
pg (0.17.1)
polyamorous (0.6.4)
polyglot (0.3.3)
psych (2.0.2)
rack (1.4.5)
rack-cache (1.2)
rack-ssl (1.3.3)
rack-test (0.6.2)
rails (3.2.16)
rails-translate-routes (0.1.3)
railties (3.2.16)
rake (10.1.1, 10.1.0)
rdoc (4.1.0, 3.12.2)
ref (1.0.5)
role_model (0.8.1)
rspec-core (2.14.7)
rspec-expectations (2.14.4)
rspec-mocks (2.14.4)
rspec-rails (2.14.1)
ruby-ole (1.2.11.7)
sass (3.2.14)
sass-rails (3.2.6)
schema_plus (1.3.2)
spreadsheet (0.9.6)
sprockets (2.2.2)
squeel (1.1.1)
sshkit (1.0.0)
term-ansicolor (1.2.2)
test-unit (2.1.0.0)
therubyracer (0.12.0)
thor (0.18.1)
thread_safe (0.1.3)
tilt (1.4.1)
timeliness (0.3.7)
tins (0.13.1)
treetop (1.4.15)
tzinfo (0.3.38)
uglifier (2.4.0)
validates_timeliness (3.0.14)
valuable (0.9.8)
warden (1.2.3)

json似乎在那里

但是如果我做

rvm_admin@myserver:~$ bundle show json
Could not locate Gemfile

为什么?

有关信息,这是我的 gemsets

rvm_admin@myserver:~$ rvm gemset list
gemsets for ruby-2.1.0 (found in /usr/local/rvm/gems/ruby-2.1.0)
=> (default)
   global

所以除全局一个外,没有其他宝石。

这是我的 gemfile

source 'https://rubygems.org'
gem 'rails', '~>3.2'
gem 'pg', '>= 0.14'
gem 'haml-rails' , '>= 0.3'
gem 'execjs'
gem 'therubyracer', :platforms => :ruby
group :development, :test do
  gem 'factory_girl_rails'
end
group :developpement do
  gem 'rspec-rails', '~> 2.11'
  gem 'capistrano', '~> 3.0.1'
  gem 'faker', '>= 1.0'
  gem 'sshkit', '~> 1.0.0'
end
group :test do
  gem 'rspec', '>= 2.11'
  gem 'webrat', '>= 0.7'
  gem 'spork-rails', '>= 3.2'
end
group :assets do
  gem 'sass-rails',   '>= 3.2.3'
  gem 'coffee-rails', '>= 3.2.1'
  gem 'compass-rails', '>= 1.0'
  gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'annotate'
gem 'spreadsheet' #, '~> 0.7'
gem 'schema_plus' #, :git => "git://github.com/lomba/schema_plus.git"
gem 'squeel' #, '~> 1.0'
gem 'devise' #, '~> 2.1'
gem 'role_model'
gem 'declarative_authorization'
gem 'rails-translate-routes'  #, '~> 0.1'
gem 'validates_timeliness'  #, '~> 3.0'

我使用bundle install --without developement test命令手动安装宝石。我不希望Capistrano执行任何类型的服务器软件包安装。因此,我统一的宝石,例如 capistrano-rvm capisttrano-rails

怎么了?我该怎么办?

===编辑

如果我进入我的应用程序夹并检查fo json,它似乎存在:

rvm_admin@myserver:/var/www/odpf/current$ bundle show json
The gem json has been deleted. It was installed at:
/usr/local/rvm/rubies/ruby-2.1.0/lib/ruby/gems/2.1.0/gems/json-1.8.1

我解决了这个问题。该问题来自 Phusion乘客Ruby解释器字符串

由于phusion乘客不再是宝石,但是现在一个包装,APT-GET将安装一个算法包:旧版本的Ruby Package

因此,即使我安装了带有RVM(Ruby 2.1.0)的Ruby的单个版本,Phusion乘客也使用了在/usr/bin/ruby的包装中交付的一个(1.9.3),因此乘客看起来像以某种方式看起来对于此解释器文件夹的宝石。当然,他找不到所需的宝石,因为它们是与Ruby 2.1.0的关系安装的,而不是与Ruby 1.9.3。

执行rvm gemset list命令将向您展示当前使用的GEMSET,但不幸的是,我们无法估计,当我们安装宝石时,它们会进入当前GEMSET内。它比这更复杂和晦涩。似乎您安装宝石的文件夹位置确实很重要。此外,gem list命令显示的宝石几乎没有用来解决宝石问题。在服务器上安装红宝石环境确实很痛苦....

Bundler网站部署页面解释了这一点。我从来没有发现RVM和Bundler如何管理宝石的好的解释。

要解决问题,我必须执行以下命令

passenger-config --ruby-command

输出给了我" Ruby Exprenter命令",将其复制并粘贴到我的/etc/apache2/stites-abailable/mysite apache配置文件:

PassengerRuby /usr/local/rvm/gems/ruby-2.1.0/wrappers/ruby

但是,我改为将其放置在配置文件的全局部分中,以确保任何Ruby Helper Tools都使用此版本,并且仅此版本的Ruby 2.1.0:

PassengerDefaultRuby /usr/local/rvm/gems/ruby-2.1.0/wrappers/ruby

有关如何设置Ruby解释器字符串的更多信息,请在" RVM辅助工具"部分中说明。

我强烈建议阅读它。

我正在使用ubuntu 14.04和nginx并获取错误:

在任何来源中都找不到JSON-1.8.1(Bundler :: Gemnotfound)

所以,我运行命令:

$ passenger-config --ruby-command

我将文件nginx.conf中的变量: passenger_ruby更改为"在nginx中使用"的值。它工作得很好。

相关内容

  • 没有找到相关文章

最新更新