Heroku:"进程退出状态127"部署ruby应用程序后

时间:2015-02-22 19:24:16

标签: ruby-on-rails ruby heroku rake

在向Heroku部署一些更改后,我收到以下错误(即使我还原了更改)。

» heroku web.1 - - Starting process with command `bin/rails server -p 59617 -e production`
» app web.1 - - /usr/bin/env: ruby : No such file or directory
» heroku web.1 - - Process exited with status 127
» heroku web.1 - - State changed from starting to crashed

似乎我的应用程序不再理解ruby了。这些是我在/ bin中的文件:

#!/usr/bin/env ruby
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
load Gem.bin_path('bundler', 'bundle')

#!/usr/bin/env ruby
APP_PATH = File.expand_path('../../config/application',  __FILE__)
require_relative '../config/boot'
require 'rails/commands'

#!/usr/bin/env ruby
require_relative '../config/boot'
require 'rake'
Rake.application.run

heroku运行“gem env”

heroku run "gem env"

1 个答案:

答案 0 :(得分:6)

经过几个小时尝试不同的解决方案,这是唯一对我有用的东西:

rake rails:update:bin

再次将更改推送到Heroku。