渡槽数据库升级无法连接到数据库

aqueduct db upgrade cannot connect to database

我在将 aqueduct 服务器连接到 postgres 数据库时遇到问题。 我做过的信息和事情:

postgresql.conf设置

listen_addresses = '*'
port = 5432

pg_hba.conf 添加行

host    all             all             0.0.0.0/0               md5
host    all             all             ::0/0                   md5

现在我想用命令连接到我的数据库:

aqueduct db upgrade --connect postgres://lit_test_user:czinczolada123@localhost:5432/lit_test

我得到的错误是:There was an error connecting to the database 'lit_test_user:czinczolada123@localhost:5432/lit_test'. Reason: unable to connect to database.
我不知道我做错了什么,因为使用 psql shell 连接很好。

我将 PostgreSQL 的版本回滚到 10.14。稳定。

pubspec.yaml我改成这样:

dependencies:
  aqueduct: ^4.0.0-b1

dev_dependencies:
  test: ^1.0.0
  aqueduct_test: ^2.0.0-b1

但重要。 输入命令:pub global activate aqueduct 4.0.0-b1