2

Capistrano を使用して、Rails 3 アプリを本番サーバーにデプロイしました。デプロイメントは正しく、アプリケーション サーバーは正しく再起動されますが、実稼働サーバーにログオンして "my_path/current" に移動すると、"rails c" を実行できません。

The program 'rails' is currently not installed.  You can install it by typing:
sudo apt-get install rails

gem リストを確認しましたが、すべてが正しくインストールされているようです。

私の config/deploy.rb ファイルは次のとおりです。

require "bundler/capistrano"

# Add RVM's lib directory to the load path.
$:.unshift(File.expand_path('./lib', ENV['rvm_path']))

# Load RVM's capistrano plugin.    
require "rvm/capistrano"

set :rvm_ruby_string, '1.9.3'
set :rvm_type, :user  # Don't use system-wide RVM

set :application, "MyApp"
set :repository,  "git@github.com:user/myapp.git"
set :scm, :git
set :branch, "master"
set :scm_verbose, true
set :scm_username, "user"               # GITHUB user name
set :user, "user"                     # VPS user name
set :scm_passphrase, "pass"        # VPS password
set :deploy_to, "/home/luc/be"
set :use_sudo, false

server "my_server", :web, :app, :db, :primary => true

# start / stop application server
namespace :deploy do
  task :start do
    invoke_command "cd /home/luc/be/current; bundle exec thin start -C config/thin.config"
  end
  task :stop do
    invoke_command "cd /home/luc/be/current; bundle exec thin stop -C config/thin.config"
  end
  task :restart do
    invoke_command "cd /home/luc/be/current; bundle exec thin restart -C     config/thin.config"
  end
end
4

1 に答える 1

0

試してみてくださいbundle exec rails c。また、ブラウザでページにアクセスしたときにスローされるエラーを確認してください。

于 2012-08-25T15:15:47.397 に答える