这是我的第一个问题,所以我希望我能遵守规则。
我刚刚完成了Michale Hartl Rails教程的第7章。我的sample_app在本地工作,并且在此之前一直在使用Heroku。
本章的最后是一个名为" 7.5专业级部署的部分。"这会将生产环境切换为SSL和Puma Web服务器。
以下代码显示了我在本部分中所做的更改,导致该应用无法在Heroku上运行。
config / environments / production.rb - 取消注释此行以启用SSL
config.force_ssl = true
Gemfile - 添加了Puma
group :production do
gem 'pg', '0.17.1'
gem 'rails_12factor', '0.0.2'
gem 'puma', '2.11.1'
end
config / puma.rb - 我从Rails教程复制后从Heroku网站直接复制了这个pdf失败
workers Integer(ENV['WEB_CONCURRENCY'] || 2)
threads_count = Integer(ENV['MAX_THREADS'] || 5)
threads threads_count, threads_count
preload_app!
rackup DefaultRackup
port ENV['PORT'] || 3000
environment ENV['RACK_ENV'] || 'development'
on_worker_boot do
# Worker specific setup for Rails 4.1+
# See: https://devcenter.heroku.com/articles/deploying-rails-applications-with-the-puma-web-server#on-worker-boot
ActiveRecord::Base.establish_connection
end
创建 Procfile
web: bundle exec puma -C config/puma.rb
提交后,推送到Heroku并迁移数据库,我得到一个页面,上面写着"应用程序错误。"
这是 heroku日志的输出:
2015-05-14T11:55:46.257652+00:00 heroku[web.1]: Starting process with command `bundle exec puma -C config/puma.rb`
2015-05-14T11:55:48.438024+00:00 app[web.1]: ... ^
2015-05-14T11:55:48.438026+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.2.0/gems/puma-2.11.1/lib/puma/configuration.rb:179:in `_load_from'
2015-05-14T11:55:48.438029+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.2.0/gems/puma-2.11.1/lib/puma/configuration.rb:40:in `load'
2015-05-14T11:55:48.438035+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.2.0/gems/puma-2.11.1/bin/puma:10:in `<top (required)>'
2015-05-14T11:55:48.438034+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.2.0/gems/puma-2.11.1/lib/puma/cli.rb:453:in `run'
2015-05-14T11:55:48.438017+00:00 app[web.1]: /app/vendor/bundle/ruby/2.2.0/gems/puma-2.11.1/lib/puma/configuration.rb:179:in `instance_eval': config/puma.rb:1: syntax error, unexpected tIDENTIFIER, expecting end-of-input (SyntaxError)
2015-05-14T11:55:48.438040+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.2.0/bin/puma:23:in `<main>'
2015-05-14T11:55:48.438031+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.2.0/gems/puma-2.11.1/lib/puma/cli.rb:308:in `parse_options'
2015-05-14T11:55:48.438039+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.2.0/bin/puma:23:in `load'
2015-05-14T11:55:48.437914+00:00 app[web.1]: config/puma.rb:1: warning: encountered \r in middle of line, treated as a mere space
threads_count = Integer(ENV['MAX_THREADS']......NCURRENCY'] || 2)
2015-05-14T11:55:49.211862+00:00 heroku[web.1]: Process exited with status 1
2015-05-14T11:55:49.223366+00:00 heroku[web.1]: State changed from starting to crashed
我从'#34;语法错误&#34;中得到印象我的config / puma.rb文件出了问题,但我无法解决问题。
我尝试指定Ruby版本号,但这没有帮助。
这有什么问题,我该怎么说呢?
答案 0 :(得分:0)
出现了完全相同的问题,并对此进行了一些严重的流失。 文件config / puma.rb中有重复的代码。不知何故,代码被添加到文件的底部。
我完全按照bitbucket存储库中的代码复制了代码。 另外,我了解到最好在复制代码时选择raw,以防止出现额外的空格或复制错误。
答案 1 :(得分:-1)
Prakash Murthy几乎为我回答了这个问题 - 谢谢。
起初我试图重新输入puma.rb的内容 - 它没有用。
然后我决定尝试完全删除puma.rb,并在新文件中从头开始输入。奇怪的是,它奏效了!
我的文本编辑器是Atom。希望这不会再发生。