postgresql Postgres服务器在pgadmin中不可见

dced5bon  于 2023-11-18  发布在  PostgreSQL
关注(0)|答案(1)|浏览(208)

我有一个新示例化的postgres服务器,它是从数据库转储中生成的:

psql -U postgres postgres < dump.sql

字符串
安装调试

sudo pg_lsclusters
Ver Cluster Port Status Owner    Data directory              Log file
10  main    5432 online postgres /var/lib/postgresql/10/main /var/log/postgresql


/postgresql-10-main.log
然后输入以下命令进入pgadmin

pgadmin4


在终端中没有数据库可用。我使用postgres 10(与转储的服务器相同)和ubuntu 16。我的postgres设置非常标准,但将postgres/pg_hba.conf更改为受信任。
有什么建议吗?

aamkag61

aamkag611#

解决了这个视频https://www.youtube.com/watch?v=jhG2L4OWRY8
我设置了postgres密码,并添加了一个新的本地主机服务器与正确的密码。

相关问题