当我使用 CLI 连接到我的数据库时,一切正常。
psql dbname postgres
psql 询问我之前设置的密码(使用 ALTER),然后我就连接上了。
在我的 pg_hba.conf 文件中,我得到以下行:
local all postgres md5
但是当我使用 node-postgres 尝试相同的事情时,我总是会得到一个错误:
could not connect to postgres { [error: Ident authentication failed for user "postgres"]
我使用的代码是基本的(假设我的密码是 mypwd)
var pg = require('pg');
var conString = "postgres://postgres:mypwd@localhost/database";
var client = new pg.Client(conString);
client.connect(function(err) {
if(err) {
return console.error('could not connect to postgres', err);
}
client.query('SELECT NOW() AS "theTime"', function(err, result) {
if(err) {
return console.error('error running query', err);
}
console.log(result.rows[0].theTime);
//output: Tue Jan 15 2013 19:12:47 GMT-600 (CST)
client.end();
});
});
你有什么想法?
[编辑:我的完整 pg_hba.conf]
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all postgres md5
# IPv4 local connections:
host all all 127.0.0.1/32 ident
# IPv6 local connections:
host all all ::1/128 ident