navicat连接postgres时显示authentication method 10 not supported

使用navicat 连接postgresql 报错如下:

authentication method 10 not supported

编辑/var/lib/postgres/data/postgresql.conf

增加

listen_addresses = '*'

把端口开放,原来是 注释的

port = 5432

navicat连接postgres时显示authentication method 10 not supported_第1张图片

编辑/var/lib/postgres/data/pg_hba.conf

把其他的 host ,local 什么的都注释

增加:

# "local" is for Unix domain socket connections only
local       all     all        trust

# IPv4 local connections:
local       all     all    127.0.0.1/32     trust

# IPv6 local connections:
local       all     all    ::1/128          trust

host        all     all    0.0.0.0/0        password

重启postgres

#重启postgresql数据库
systemctl restart postgresql-14

测试连接,连接成功

navicat连接postgres时显示authentication method 10 not supported_第2张图片

你可能感兴趣的:(postgresql,报错解决,rust,postgresql,开发语言)