简体   繁体   English

基本Postgres和MassiveJS的连接已终止

[英]Connection terminated for basic Postgres and MassiveJS

I am trying to connect to my database, but I am running into some errors. 我正在尝试连接到数据库,但是遇到了一些错误。 I am pretty new to all this, so sorry if I'm not being clear. 我对这一切还很陌生,如果我不清楚,请抱歉。 I am able to use pgAdmin to run queries to my database, but I can't seem to get it working here. 我可以使用pgAdmin对数据库运行查询,但是似乎无法在这里运行它。

Here is my error: 这是我的错误:

/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)

And here is my server.js: 这是我的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);
});

Don't really know what else to say; 真的不知道该说些什么。 I'll do my best to clarify anywhere it's unclear. 我会尽力澄清不清楚的地方。

Found out my issue; 发现我的问题; apparently changing the port in Postgres affected my ability to connect? 显然更改Postgres中的端口影响了我的连接能力? Not sure why, but changing it back to the default 5432 worked. 不知道为什么,但是将其更改回默认值5432是可行的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM