ruby-on-rails – 不能heroku运行rake db通过我的应用程序迁移

这是我第一次遇到这样的错误
Running `rake db:migrate` attached to terminal... up,run.8524
 !    Heroku client internal error.
 !    Search for help at: https://help.heroku.com
 !    Or report a bug at: https://github.com/heroku/heroku/issues/new

    Error:       Operation timed out - connect(2) (Errno::ETIMEDOUT)
    Backtrace:   /usr/local/heroku/lib/heroku/client/rendezvous.rb:39:in `initialize'
                 /usr/local/heroku/lib/heroku/client/rendezvous.rb:39:in `open'
                 /usr/local/heroku/lib/heroku/client/rendezvous.rb:39:in `block in start'
                 /usr/local/heroku/ruby/lib/ruby/1.9.1/timeout.rb:68:in `timeout'
                 /usr/local/heroku/lib/heroku/client/rendezvous.rb:31:in `start'
                 /usr/local/heroku/lib/heroku/command/run.rb:113:in `rendezvous_session'
                 /usr/local/heroku/lib/heroku/command/run.rb:100:in `run_attached'
                 /usr/local/heroku/lib/heroku/command/run.rb:21:in `index'
                 /usr/local/heroku/lib/heroku/command.rb:206:in `run'
                 /usr/local/heroku/lib/heroku/cli.rb:28:in `start'
                 /usr/local/heroku/bin/heroku:24:in `<main>'

    Command:     heroku run rake db:migrate --app oppcis
    Version:     heroku-toolbelt/2.35.0 (x86_64-darwin10.8.0) ruby/1.9.3

我已经出了一段时间在使用英雄…而且大回来之后,我遇到了这个错误.

我现在已经过时了,现在Heroku的消息.

我希望有人能给我一个建议,解决方案或涉及的问题.

谢谢.

编辑:

日志说…

2013-02-15T08:38:00+00:00 heroku[api]: Starting process with command `bundle exec rake db:migrate` by ssalamat.peg@gmail.com
2013-02-15T08:38:03+00:00 heroku[run.6510]: Awaiting client
2013-02-15T08:38:03+00:00 heroku[run.6510]: Starting process with command `bundle exec rake db:migrate`
2013-02-15T08:38:04+00:00 heroku[run.6510]: State changed from starting to up
2013-02-15T08:38:33+00:00 heroku[run.6510]: Error R13 (Attach error) -> Failed to attach to process
2013-02-15T08:38:34+00:00 heroku[run.6510]: Process exited with status 128
2013-02-15T08:38:34+00:00 heroku[run.6510]: State changed from up to complete

解决方法

尝试运行它在“背景”
heroku run:detached rake db:migrate

您也可以尝试heroku troubleshooting,因为它似乎是一个连接问题.

heroku run rails console
telnet rendezvous.runtime.heroku.com 5000

如果它不起作用,你可能有一个防火墙阻止你连接到heroku.

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...