4

我第一次尝试在 ubuntu 服务器上部署我的应用程序。

我一直遇到这个错误:

 2013-03-24 15:13:36 executing `deploy:run_migrations'
  * executing "rvm gemset use vapin"
    servers: ["111.111.111.11"]
    [111.111.111.11] executing command
 ** [out :: 111.111.111.11] 
 ** [out :: 111.111.111.11] 
 ** [out :: 111.111.111.11] RVM is not a function, selecting rubies with 'rvm use ...' will not work.
 ** [out :: 111.111.111.11] 
 ** [out :: 111.111.111.11] 
 ** [out :: 111.111.111.11] 
 ** [out :: 111.111.111.11] You need to change your terminal emulator preferences to allow login shell.
 ** [out :: 111.111.111.11] 
 ** [out :: 111.111.111.11] Sometimes it is required to use `/bin/bash --login` as the command.
 ** [out :: 111.111.111.11] 
 ** [out :: 111.111.111.11] Please visit https://rvm.io/integration/gnome-terminal/ for a example.

这是我的一些 deploy.rb 文件:

    require 'bundler/capistrano'
    require 'rvm/capistrano'
    # set the ruby version
    #set :rvm_ruby_string, 'ruby-1.9.3-p392'
    #set :rvm_type, :system

    # set the rvm gemset to use
    set :rvm_gemset, 'vapin'
...
    task :install do
        run "rvm gemset use #{rvm_gemset}"
        run "cd #{current_path} && bundle install  --without=test"
    end

RVM 安装在我的服务器上。

$ which rvm
/usr/local/rvm/bin/rvm
$ which ruby
/usr/local/rvm/rubies/ruby-1.9.3-p392/bin/ruby

任何帮助表示赞赏。这几天我一直在谷歌上搜索。

编辑

我已经卸载了 RVM 的多用户安装并重新安装了单用户版本。

我在 deploy.rb 脚本中添加了这一行: set :default_shell, "/bin/bash --login" # required for rvm scripts to work proper

现在我没有收到“RVM 不是函数......”错误。

问题是当 bundle install 运行时,gem 没有安装在我的 rvm gemset 中。

4

5 回答 5

2

在我的 deploy.rb 文件中,设置这一行:

set :bundle_dir, "/usr/local/rvm/gems/ruby-1.9.3-p392"

在此行之前:

require 'bundler/capistrano'

似乎帮助捆绑者知道在哪里安装宝石。不知道为什么需要这样做。我以前从来不需要它。

于 2013-03-26T04:56:44.083 回答
1

我一直在努力解决这个问题。尝试了上面列出的所有内容,没有任何效果。从 osx 部署到 ubuntu。

最后,在 ubuntu 上,“su-ed”作为我的部署用户,我做了“rvm get head”(我一直在使用“rvm get stable”)。(我在单用户环境中设置了它,rvm 在“/home/deploy/.rvm”下。)

就像魔术一样,它开始起作用了!呸。所以我想也许最新的 rvm 中有一些修复,但还不稳定?

于 2014-03-20T15:59:56.693 回答
1
  1. 不要使用 rvm1/capistrano3 或 rvm/capistrano;不要设置:pty。

  2. 将服务器上的 runner 用户更改~/.rvmrc为 - 请注意,它必须位于它在不以交互方式运行时杀死自己的行之前:

# get rvm for non-interactive shells (eg capistrano) too
source /etc/profile.d/rvm.sh
export BASH_ENV=$HOME/.bashrc
export rvm_is_not_a_shell_function=0

# If not running interactively, don't do anything
[ -z "$PS1" ] && return 
于 2014-03-12T20:04:15.013 回答
0

尽管您似乎已经回答了自己的问题,但我也会把我的帽子扔在戒指上......
我在尝试创建 Rails 模板时遇到了与整个RVM is not a function错误类似的问题,并通过获取rvm环境来解决它在特定的 Ruby 版本上安装实例,然后直接在其上设置 gemset/running bundle install。在您的情况下,它可能类似于:

require 'bundler/capistrano'
require 'rvm/capistrano'
# set the ruby version
set :rvm_ruby_string, 'ruby-1.9.3-p392'

# set the rvm gemset to use
set :rvm_gemset, 'vapin'
...
task :install do
  require 'rvm'
  env = RVM::Environment.new(rvm_ruby_string)
  # If you need to create a new app-specific gemset
  # env.gemset_create(rvm_gemset)
  env.gemset_use!(rvm_gemset)
  # If you need to install bundler in a new gemset
  # env.system("gem", "install", "bundler")
  env.system("bundle", "install", "--without=test")
end

显然,上面的代码没有经过测试,但是我在这个 Rails 模板文件中创建了类似的代码,如果上面的代码完全失败,我希望它可以作为你的参考。

于 2013-03-26T07:14:05.557 回答
0

也许您需要将 RVM bin 目录添加到您$PATH的脚本中:

PATH=$PATH:$HOME/.rvm/bin
于 2013-03-24T23:08:06.567 回答