无法在VPS上访问Rails Production Console

时间:2013-08-04 16:12:14

标签: ruby-on-rails ruby-on-rails-3 console

我在linode上设置了我的rails应用程序,网站正在按预期工作。我在控制台中“ssh”后试图访问Rails控制台,但是我收到以下错误(注意我正在运行我的应用程序主目录中的命令):

~/apps/my_app$ bundle exec rails c production - Could not locate Gemfile

~/apps/my_app$ RAILS_ENV=production rails console -bash: /usr/bin/rails: No such file or directory

~/apps/my_app$ RAILS_ENV=production bundle exec rails c - Could not locate Gemfile

我安装了Ruby 1.9.3,在我的gemfile中我有:gem 'rails', '3.2.9'

1 个答案:

答案 0 :(得分:2)

错误说您缺少Gemfile。确保ls输出~/apps/my_app命令(例如Gemfile){{1}}。我的猜测是要么你没有在正确的目录中,要么Gemfile尚未部署到你的存储库。