渡槽数据库升级无法连接到数据库
aqueduct db upgrade can't connect to database
- windows 10
- postgres 版本 - 13.0
- 渡槽版本 - 3.3.0+1
- 正确创建了数据库和用户
- 创建迁移
我可以使用 psql
连接到数据库。
postgresql.conf 包含 listen_addresses = '*', port = 5432
当我输入命令时:
aqueduct db upgrade --connect postgres://app_user:password@localhost:5432/app
我收到错误:
There was an error connecting to the database 'app_user:password@localhost:5432/app'. Reason: unable to connect to database.
我已经搜索了数百个来源。这是一个新问题,我不是唯一面临的问题。还没有人解决!
大侠,求助!
不幸的兄弟们好!
我找到了解决这个问题的方法!
我将 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
我3天没解决这个问题!我很高兴...
希望能帮到别人。
- windows 10
- postgres 版本 - 13.0
- 渡槽版本 - 3.3.0+1
- 正确创建了数据库和用户
- 创建迁移
我可以使用 psql
连接到数据库。
postgresql.conf 包含 listen_addresses = '*', port = 5432
当我输入命令时:
aqueduct db upgrade --connect postgres://app_user:password@localhost:5432/app
我收到错误:
There was an error connecting to the database 'app_user:password@localhost:5432/app'. Reason: unable to connect to database.
我已经搜索了数百个来源。这是一个新问题,我不是唯一面临的问题。还没有人解决!
大侠,求助!
不幸的兄弟们好!
我找到了解决这个问题的方法!
我将 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
我3天没解决这个问题!我很高兴...
希望能帮到别人。