开幕式上的歌利亚

时间:2016-03-30 07:40:02

标签: ruby openshift eventmachine goliath

尝试使用以下config.ru在Openshift上部署Goliath应用程序

require 'goliath'
require './goliathapp'

runner = Goliath::Runner.new(ARGV, nil)
runner.api = GoliathApp.new
runner.app = Goliath::Rack::Builder.build(GoliathApp, runner.api)
runner.run

在我的测试平台环境中,应用程序运行顺利,但在Openshift上返回以下权限错误。

[Client 20] Cannot checkout session. An error occured while starting the web application.
Error page:
no acceptor (port is in use or requires root privileges) (RuntimeError)
/var/lib/openshift/.../.gem/gems/eventmachine-1.2.0.1/lib/eventmachine.rb:530:in `start_tcp_server'
/var/lib/openshift/.../.gem/gems/eventmachine-1.2.0.1/lib/eventmachine.rb:530:in `start_server'
/var/lib/openshift/.../.gem/gems/goliath-1.0.4/lib/goliath/server.rb:86:in `block in start'
/var/lib/openshift/.../.gem/gems/em-synchrony-1.0.4/lib/em-synchrony.rb:38:in `block (2 levels) in synchrony'

在Openshift上运行巨人队有没有运气好吗?

谢谢,

1 个答案:

答案 0 :(得分:1)

您是否100%肯定您实际上并未在该端口上运行其他应用程序?

请尝试

$ lsof -i :9000