0

我一直在开发我的第一个 Node.js 应用程序(实际上,为了好玩和练习,我将一些旧代码移到 Node 上)并且正在尝试将它托管在 Heroku 上。

我已经能够获得应用程序,因为它使用工头在本地流畅地运行,但是每当我将应用程序部署到 Heroku 时,它就会启动,但无法提供查询。我做了一些研究,找不到任何具体的东西,但在我看来,Heroku 没有正确安装几个模块

MySQL 数据库托管在 Amazon RDS 中,我已经按照并重新检查了步骤、访问权限和安全异常,似乎没有问题。

我正在使用在我的 package.json 中定义的以下模块:

{
 "name": "AppName",
 "version": "0.0.1",
 "dependencies": {
   "express": "2.5.x",
   "jade": "0.28.1",
   "stylus": "0.32.0",
   "mysql": "2.0.0-alpha7",
   "string": "1.2.*",
   "sanitizer": "0.0.*",
   "validator": "0.4.8"
 },
 "engines": {
 "node": "0.8.*",
 "npm": "1.*.*"
 }
}

在我的应用文件顶部调用:

var express = require('express');
var crypto = require('crypto');
var S = require('string');
var mysql = require('mysql');
var sanitizer = require('sanitizer');
var check = require('validator').check,
sanitize = require('validator').sanitize;

错误信息如下:

TypeError: Cannot call method 'query' of undefined
at pool.getConnection.app.get.connection.query.res.render.global_title (/app/web.js:40:14)
at callbacks (/app/node_modules/express/lib/router/index.js:272:11)
at param (/app/node_modules/express/lib/router/index.js:246:11)
at pass (/app/node_modules/express/lib/router/index.js:253:5)
at Router._dispatch (/app/node_modules/express/lib/router/index.js:280:5)
at Object.middleware [as handle] (/app/node_modules/express/lib/router/index.js:45:10)
at next (/app/node_modules/express/node_modules/connect/lib/http.js:204:15)
at Object.stylus (/app/node_modules/stylus/lib/middleware.js:181:7)
at next (/app/node_modules/express/node_modules/connect/lib/http.js:204:15)
at Object.methodOverride [as handle]     (/app/node_modules/express/node_modules/connect/lib/middleware/methodOverride.js:35:5)

以及失败的代码段:

pool.getConnection(function(err, connection) {

app.get('/', function(req, res){

    connection.query('QUERY_HERE', function(err, rows, fields) {
      if (err) throw console.log(err);

      res.render('index', {
        global_title: S(site_title).stripTags().s,
        title: S(rows[0].title).stripTags().s,
        bodytext: sanitize(sanitizer.sanitize(rows[0].content)).xss()
      });

      connection.end();

    });
});
//end connection
});

这是 Heroku 在浏览器或日志中给我的唯一错误,构建它似乎没有任何问题。

我在这里有点不知所措,所以希望有人能准确指出我在哪里是个白痴,并在我求助于 Heroku 之前让我滚滚!

提前致谢。

更新:

使用 Pascal Belloncle 建议的代码更改来捕获日志中的错误会在浏览器中产生应用程序错误,并在日志中显示以下内容:

 connection.query(QUERY, function(err, row
 at Handshake.Sequence.end (/app/node_modules/mysql/lib/protocol/sequences/Sequence.js:66:24)
 at Protocol.handleNetworkError (/app/node_modules/mysql/lib/protocol/Protocol.js:230:14)
 at Socket.EventEmitter.emit (events.js:126:20)
 at Socket._destroy.self.errorEmitted (net.js:328:14)
 TypeError: Cannot call method 'query' of undefined
 at process.startup.processNextTick.process._tickCallback (node.js:244:9)
 at Handshake.Pool.getConnection [as _callback] (/app/node_modules/mysql/lib/Pool.js:35:9)
 at Connection._handleNetworkError (/app/node_modules/mysql/lib/Connection.js:145:18)
 at /app/web.js:40:15

似乎仍然在同一点崩溃,没有有用的错误。

更新 2:

一条错误信息!

2013-02-06T06:32:57+00:00 heroku[router]: at=error code=H13 desc="Connection closed without response" method=GET path=/ host=trash-media.herokuapp.com fwd=31.3.253.10 dyno=web.1 queue=0ms wait=0ms connect=4ms service=21033ms status=503 bytes=0

https://devcenter.heroku.com/articles/error-codes#h13-connection-closed-without-response

更新 3:

在看到来自更新 2 的错误消息并对 RDS 中的安全设置进行了一些摆弄之后,这现在看起来与托管 Heroku 的位置(美国西部)和我的 RDS 数据库所在的位置(欧盟)之间的可用区差异有关-西方)。我已经在 Heroku 的支持下提出了这个问题,如果我得到一个答案,我会用一个答案来结束这个问题,并希望有一个可行的解决方案或解决方法。

4

2 回答 2

1

检查第一行 err 的值。如果连接未定义,很可能是因为您有错误。

另外,您应该在每个请求上获得一个新连接,然后返回到池中。

app.get('/', function(req, res){
  pool.getConnection(function(err, connection) {
    if (err) {
      console.error("getConnection", err);
    }
    // do stuff here
    connection.end(); // return connection to the pool
  });
});
于 2013-02-05T22:10:15.483 回答
0

我正在结束这个问题,因为这个问题现在似乎与 AWS 中 Heroku 应用程序所在位置(美国)和 RDS 所在位置(欧洲)之间的可用区差异有关。

尽管按照 RDS 开发人员工具演练中的建议更改了区域,但 Heroku 仍然无法与我的 RDS 交互。

解决方法是更改​​ RDS 数据库的安全组策略以允许所有连接:

0.0.0.0/0

或者将数据库移动到美国可用区。

不太理想。

我现在已经等待了四天,等待 Heroku 支持的回复以及任何其他建议,所以如果他们回来,我会将它们添加到这个答案中。

于 2013-02-10T14:27:27.020 回答