访问数据库postgresql:密码验证失败

时间:2018-06-01 08:21:29

标签: postgresql postgresql-9.5

我是postgreSQL(和SQL btw)的新手。我试图在本地连接数据库。 以下是我使用的命令:

create user adeyris;
alter user antoine with login;
alter user antoine with encrypted password '123';
alter user antoine with createdb;
create database cpf_ietest;

我现在离开psql,然后加载我的转储:

psql -h localhost -U antoine -d cpf_ietest -f /home/antoine/Downloads/cpf_ietest.sql

我被要求输入密码,输入123,我收到以下错误:

  

psql:致命:用户" antoine"

的密码验证失败

这是我的pg_hba.conf文件:

# Database administrative login by Unix domain socket
local   all             postgres                                peer

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# "local" is for Unix domain socket connections only
local   all             all                                     md5
# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::1/128                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#local   replication     postgres                                peer
#host    replication     postgres        127.0.0.1/32            md5
#host    replication     postgres        ::1/128                 md5

在第一个未注释的行中,我修改了#peer;#到了' md5'。 我在Ubuntu 16.04和postgresql 9.5上运行。

感谢您的帮助, 安托

2 个答案:

答案 0 :(得分:0)

是123是你的数据库密码,如果没有,那么输入你的数据库密码 您在安装Postgres时提供的内容

答案 1 :(得分:0)

  1. 在Md5方法中使用您在安装PostgreSQL时提供的数据库密码。
  2. 检查密码是否以.pgpass文件退出。
  3. 同行认证与OS postgres用户合作,因此请查看天气操作系统用户必须启用NOPASSWD
  4. 最后,您可以使用信任身份验证方法进行本地连接。