我是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上运行。
感谢您的帮助, 安托
答案 0 :(得分:0)
是123是你的数据库密码,如果没有,那么输入你的数据库密码 您在安装Postgres时提供的内容
答案 1 :(得分:0)