节点应用程序

时间:2017-09-08 01:05:16

标签: node.js postgresql heroku connection-string heroku-postgres

在heroku上有一个节点应用程序,尝试使用node-postgres和heroku-postgres连接到postgres。

const {Pool} = require('pg');
var connectionString = process.env.DATABASE_URL || {user:'bot',database:'myDB'};
const db = new Pool(connectionString);
console.log('Starting DB with parameters: '+connectionString);

来自$ heroku log的Heroku日志显示heroku生成的连接字符串已设置:

2017-09-08T00:36:03.510529+00:00 app[web.1]: Starting DB with parameters: postgres://xxxxxx:xxxxxxxxx@ec2-184-xx-xx-xx.compute-1.amazonaws.com:5432/xxxxxxxx

但实际查询会产生:

2017-09-08T00:36:04.794422+00:00 app[web.1]: Error executing query Error: connect ECONNREFUSED 127.0.0.1:5432
2017-09-08T00:36:04.794425+00:00 app[web.1]:     at Object.exports._errnoException (util.js:1020:11)
2017-09-08T00:36:04.794426+00:00 app[web.1]:     at exports._exceptionWithHostPort (util.js:1043:20)
2017-09-08T00:36:04.794426+00:00 app[web.1]:     at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1086:14)

这意味着连接字符串未按原样设置。 。 。 是这样的吗?如果是这样的话?

1 个答案:

答案 0 :(得分:1)

取决于node-postgres的版本,但是从v6.x后期开始,它要求使用new Pool({connectionString: 'postgres://...'})将连接字符串传递给构造函数。