PgAdmin on Ubuntu 20.04 FATAL:用户密码验证失败
PgAdmin on Ubuntu 20.04 FATAL: password authentication failed for user
我已经在 Ubuntu 20.04 上安装了 Postgres 和 PGAdmin4,但是我无法创建服务器并连接到数据库
正如我在多个解决方案中看到的那样,我在 pg_hba.conf 文件
上将方法更改为 md5
# Database administrative login by Unix domain socket
local all postgres md5
# 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
我也已经连接到 psql,创建了新用户,修改密码并通过 运行 sudo systemctl restart postgresql
重新启动服务器
List of roles
Role name | Attributes | Member of
-----------+------------------------------------------------------------+-----------
postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
有什么想法吗?
sudo -u postgres psql
并设置新密码
postgres=#\密码
运行 以下命令:
sudo -i -u postgres
输入你的 sudo 用户密码
psql
ALTER USER postgres PASSWORD 'new_password';
\q
exit
现在更改配置文件以使用此新密码:
sudo subl /etc/postgresql/13/main/pg_hba.conf
(subl
表示 subliime 文本,您可以使用任何其他文本编辑器)。
编辑文件的这一部分:将 peer 更改为 md5
# Database administrative login by Unix domain socket
local all postgres peer
# "local" is for Unix domain socket connections only
local all all peer
重新启动 postgres 服务
运行 使用新创建的密码登录 postgres 的命令:
psql -U postgres
我已经在 Ubuntu 20.04 上安装了 Postgres 和 PGAdmin4,但是我无法创建服务器并连接到数据库
正如我在多个解决方案中看到的那样,我在 pg_hba.conf 文件
上将方法更改为 md5# Database administrative login by Unix domain socket
local all postgres md5
# 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
我也已经连接到 psql,创建了新用户,修改密码并通过 运行 sudo systemctl restart postgresql
List of roles
Role name | Attributes | Member of
-----------+------------------------------------------------------------+-----------
postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
有什么想法吗?
sudo -u postgres psql 并设置新密码 postgres=#\密码
运行 以下命令:
sudo -i -u postgres
输入你的 sudo 用户密码
psql
ALTER USER postgres PASSWORD 'new_password';
\q
exit
现在更改配置文件以使用此新密码:
sudo subl /etc/postgresql/13/main/pg_hba.conf
(subl
表示 subliime 文本,您可以使用任何其他文本编辑器)。
编辑文件的这一部分:将 peer 更改为 md5
# Database administrative login by Unix domain socket
local all postgres peer
# "local" is for Unix domain socket connections only
local all all peer
重新启动 postgres 服务
运行 使用新创建的密码登录 postgres 的命令:
psql -U postgres