如何使用bookshelf.js从远程系统连接postgresql,而不是使用“host:localhost”
答案 0 :(得分:1)
使用主机的主机名或IP地址,而不是“localhost”,如:
host: "dbserver.example.com"
或
host: "203.0.113.1"
注意:如果数据库未使用默认端口(5432),您还应该指定它。例如,端口5050:
host: "dbserver.example.com:5050"
或
host: "203.0.113.1:5050"