我正在尝试连接我的数据库,但我遇到了一些错误。我对这一切都是新手,所以如果我说得不清楚,很抱歉。我可以使用pgAdmin对我的数据库运行查询,但是我似乎不能让它在这里工作。
下面是我的错误:
/Users/patrickholley/Desktop/Dockbox/Dev-Mtn/w6/d3/massive-demo/node_modules/deasync/index.js:46
throw err;
^
Error: Connection terminated
at Connection.<anonymous> (/Users/patrickholley/Desktop/Dockbox/Dev-Mtn/w6/d3/massive-demo/node_modules/pg/lib/client.js:183:17)
at Object.onceWrapper (events.js:290:19)
at emitNone (events.js:86:13)
at Connection.emit (events.js:185:7)
at Socket.<anonymous> (/Users/patrickholley/Desktop/Dockbox/Dev-Mtn/w6/d3/massive-demo/node_modules/pg/lib/connection.js:66:10)
at emitOne (events.js:96:13)
at Socket.emit (events.js:188:7)
at TCP._handle.close [as _onclose] (net.js:501:12)
at Function.module.exports.loopWhile (/Users/patrickholley/Desktop/Dockbox/Dev-Mtn/w6/d3/massive-demo/node_modules/deasync/index.js:72:22)
at Object.connectSync (/Users/patrickholley/Desktop/Dockbox/Dev-Mtn/w6/d3/massive-demo/node_modules/deasync/index.js:44:19)下面是我的server.js:
var express = require('express');
var bodyParser = require('body-parser');
var cors = require('cors');
var massive = require('massive');
var app = express();
app.use(bodyParser.json());
var port = 3000;
var conn = massive.connectSync({
connectionString : "postgres://postgres@localhost/massive_demo"
});
app.set('db', conn);
var db = app.get('db');
app.get('/incidents', function(req, res) {
console.log('POST sighting');
});
app.post('/incidents', function(req, res) {
console.log('POST sighting');
});
app.listen(port, function() {
console.log("Started server on port", port);
});我真的不知道还能说什么;我会尽我最大的努力澄清任何不清楚的地方。
发布于 2017-03-02 05:03:05
发现了我的问题;显然,更改Postgres中的端口会影响我的连接能力?不知道为什么,但是把它改回默认的5432就行了。
https://stackoverflow.com/questions/42540284
复制相似问题