У меня есть доступ к удаленной postgres БД из pgAdmin4, и я также могу получить доступ из nodejs с помощью Ma c. Прямо сейчас я использую тот же код для доступа к БД в Windows. Код для моего подключения следующий:
const { Client } = require('pg'); //Importing the Postgres package
const hosts= require('../hosts'); //Using the file containig all hosts
const connectionData = { //Begin creating the connection settings object
host: hosts.DBHost, //DB host
port: hosts.DBPort, //DB hosts port
database: hosts.DB, //DB
user: hosts.DBUser, //DB user
password: hosts.DBPassword, //DB user password
}
Мой тест следующий:
var client = new Client(connectionData); //New client instance using the above connection settings
client.connect(); //Open the connection to the database()
sql = "select * from myTable";
client.query(sql)
.then(response => {
console.log ({"data": response}); //This isn't shown
})
.catch(err => {
console.log({"error": err}); //This isn't shown neither
})
Нет ошибок, нет исключений, сервер БД не отвечает!
Почему сервер не отвечает?