3

每当我尝试将本地 mysql 数据库推送到 Amazon RDS 时,都会收到 503 应用程序错误:

bundle exec heroku db:push
...
Sending schema
Schema:         40% |================                          | ETA:  00:00:38
Saving session to push_201106170529.dat..
!!! Caught Server Exception
HTTP CODE: 503
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
 <head>
    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
    <style type="text/css">
     html, body, iframe { margin: 0; padding: 0; height: 100%; }
     iframe { display: block; width: 100%; border: none; }
    </style>
    <title>Application Error</title></head>
 </head>
 <body>
  <iframe src="https://s3.amazonaws.com/heroku_pages/error.html">
    <p>Application Error</p>
  </iframe>
 </body>
</html>

我正在使用水龙头 0.3.23

虽然错误消息与此处报告的消息类似:Heroku help Amazon RDS rails push database error我的问题与 Amazon 的安全组无关,因为它已经配置。

还有其他人遇到这个问题吗?

4

2 回答 2

1

我使用带有 CURL POST 请求的 Heroku 得到了相同的 HTML 响应消息和 HTTP 错误代码。

执行heroku logs | tail给了我更多的见解:

2016-04-20T10:56:17.509354+00:00 heroku[router]: 
at=error code=H12 desc="Request timeout" method=POST [...]

H12 错误表示请求超时。这意味着“完成 HTTP 请求的时间超过 30 秒”[1]。

更多关于https://devcenter.heroku.com/articles/request-timeout上的请求超时。

[1] https://devcenter.heroku.com/articles/error-codes#h12-request-timeout

于 2016-04-20T11:33:30.037 回答
0

我第一次尝试时对 heroku db:push 有同样的反应。

但是,当我第二次运行它时,没有错误,并且数据库被推送。

于 2011-06-28T20:15:06.983 回答