-1

我正在尝试将我的 Rails 应用程序部署到 Linode VPS,但是在我完成所有步骤之后 xxx@xxxx-desktop:~/myrailsapp$ cap deploy:cold

我收到以下错误:

failed: "env PATH=$HOME/.rvm/shims:$HOME/.rvm/bin:$PATH sh -c 'cd /home/deployer/apps/myrailsapp/releases/20130422101521 && bundle install --gemfile /home/deployer/apps/myrailsapp/releases/20130422101521/Gemfile --path /home/deployer/apps/myrailsapp/shared/bundle --deployment --quiet --without development test'" on xxx.xxx.xxx.xxx

完整日志如下:

xxx@xxx-desktop:~/myrailsapp$ cap deploy:cold
  * 2013-04-22 15:44:59 executing `deploy:cold'
  * 2013-04-22 15:44:59 executing `deploy:update'
 ** transaction: start
  * 2013-04-22 15:44:59 executing `deploy:update_code'
    updating the cached checkout on all servers
    executing locally: "git ls-remote git@bitbucket.org:myrailsapp/myrailsapp.git master"
    command finished in 5385ms
  * executing "if [ -d /home/deployer/apps/myrailsapp/shared/cached-copy ]; then cd /home/deployer/apps/myrailsapp/shared/cached-copy && git fetch -q origin && git fetch --tags -q origin && git reset -q --hard 88641306c92790d13f95beb7a2826a072ab72df4 && git clean -q -d -x -f; else git clone -q git@bitbucket.org:myrailsapp/myrailsapp.git maste /home/deployer/apps/myrailsapp/shared/cached-copy && cd /home/deployer/apps/myrailsapp/shared/cached-copy && git checkout -q -b deploy 88641306c92790d13f95beb7a2826a072ab72df4; fi"
    servers: ["xxx.xxx.xxx.xxx"]
Password: 
    [xxx.xxx.xxx.xxx] executing command
    command finished in 5786ms
    copying the cached version to /home/deployer/apps/myrailsapp/releases/20130422101521
  * executing "cp -RPp /home/deployer/apps/myrailsapp/shared/cached-copy /home/deployer/apps/myrailsapp/releases/20130422101521 && (echo 88641306c92790d13f95beb7a2826a072ab72df4 > /home/deployer/apps/myrailsapp/releases/20130422101521/REVISION)"
    servers: ["xxx.xxx.xxx.xxx"]
    [xxx.xxx.xxx.xxx] executing command
    command finished in 951ms
  * 2013-04-22 15:45:22 executing `deploy:finalize_update'
    triggering before callbacks for `deploy:finalize_update'
  * 2013-04-22 15:45:22 executing `deploy:assets:symlink'
  * executing "rm -rf /home/deployer/apps/myrailsapp/releases/20130422101521/public/assets && mkdir -p /home/deployer/apps/myrailsapp/releases/20130422101521/public && mkdir -p /home/deployer/apps/myrailsapp/shared/assets && ln -s /home/deployer/apps/myrailsapp/shared/assets /home/deployer/apps/myrailsapp/releases/20130422101521/public/assets"
    servers: ["xxx.xxx.xxx.xxx"]
    [xxx.xxx.xxx.xxx] executing command
    command finished in 993ms
  * 2013-04-22 15:45:23 executing `bundle:install'
  * executing "cd /home/deployer/apps/myrailsapp/releases/20130422101521 && bundle install --gemfile /home/deployer/apps/myrailsapp/releases/20130422101521/Gemfile --path /home/deployer/apps/myrailsapp/shared/bundle --deployment --quiet --without development test"
    servers: ["xxx.xxx.xxx.xxx"]
    [xxx.xxx.xxx.xxx] executing command
 ** [out :: xxx.xxx.xxx.xxx] ERROR: Gem bundler is not installed, run `gem install bundler` first.
    command finished in 974ms
*** [deploy:update_code] rolling back
  * executing "rm -rf /home/deployer/apps/myrailsapp/releases/20130422101521; true"
    servers: ["xxx.xxx.xxx.xxx"]
    [xxx.xxx.xxx.xxx] executing command
    command finished in 971ms
failed: "env PATH=$HOME/.rvm/shims:$HOME/.rvm/bin:$PATH sh -c 'cd /home/deployer/apps/myrailsapp/releases/20130422101521 && bundle install --gemfile /home/deployer/apps/myrailsapp/releases/20130422101521/Gemfile --path /home/deployer/apps/myrailsapp/shared/bundle --deployment --quiet --without development test'" on xxx.xxx.xxx.xxx
4

1 回答 1

0

您收到错误消息:

Bundler is not installed

在您的 linode 服务器之前,您必须安装捆绑程序:

gem install bundler

此外,您必须在顶部添加到您的deploy.rb

require "bundler/capistrano"

另外,您的问题是 rvm 尚未添加到 PATH:

你可以看看这个问题:

Ruby on Rails RVM $PATH 问题

问候!

于 2013-04-22T10:41:16.640 回答