我将渡槽服务器连接到postgres数据库时遇到问题。 我所做的信息和事情:
aqueduct db generate
lit_test_user
GRANTED ALL ON lit_test_user
在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可以正常连接。
答案 0 :(得分:1)
我将 PostgreSQL的版本回滚到10.14 。很稳定。
然后pubspec.yaml
我改为:
dependencies:
aqueduct: ^4.0.0-b1
dev_dependencies:
test: ^1.0.0
aqueduct_test: ^2.0.0-b1
但重要。输入命令:pub全局激活渡槽4.0.0-b1