0

我已经在 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'

4

1 回答 1

2

该错误表明您缺少 Gemfile。确保从此处的ls命令输出(例如您所在的位置~/apps/my_appGemfile。我的猜测是您不在正确的目录中,或者 Gemfile 尚未部署到您的存储库。

于 2013-08-04T16:35:38.597 回答