6

我正在尝试连接到我的 Heroku PostgreSQL 数据库,但出现以下错误:

cannotEstablishConnection("FATAL:  no pg_hba.conf entry for host \"37.167.93.189\", user \"clpnkpyttmdtyq\", database \"d3h6147v73mgtu\", SSL off\n")

我知道 Heroku postgres 数据库需要使用 SSL 连接,但我不知道如何在我的Droplet对象上配置连接。

这是我的postgresql.json配置文件:

{
    "host": "ec2-54-163-224-108.compute-1.amazonaws.com",
    "user": "clpnkpyttmdtyq",
    "password": "99201aa07c48e18e7bdf210937857b85bee37cd8d8cb904381b1ddff934c7a4f",
    "database": "d3h6147v73mgtu",
    "port": 5432
}

也许有ssl我不知道的参数?

我如何添加VaporPostgresSQLProvider

let drop = Droplet()

// Tell the droplet to use our SQL provider service
try drop.addProvider(VaporPostgreSQL.Provider.self)

有任何想法吗 ?

当我尝试使用本地 postgres 数据库时,它可以工作,因为它不需要 ssl 连接。

4

3 回答 3

2

对于 Heroku,我们需要未经验证的 TLS 传输。 https://api.vapor.codes/postgresql/latest/PostgreSQL/Classes/PostgreSQLConnection/TransportConfig.html

let pgURL = Environment.get("DATABASE_URL") ?? "postgres://user:password@host:port/database"

let pgConfig = PostgreSQLDatabaseConfig(url: pgURL, transport: PostgreSQLConnection.TransportConfig.unverifiedTLS)!
于 2019-12-31T23:07:06.703 回答
1

这是一个让我个人付出很多代价的过程,这个解决方案对我有用,试试这个


在文件Config > secrets > postgresql.json添加这个配置(用于本地或远程,如果这个文件不存在,创建这个)

{
   "host": "127.0.0.1",
   "user": "your_user_pc", 
   "password": "",
   "database": "your_user_pc",
   "port": 5432
}

用户可以从终端获取

$ cd ~

在您的文件Procfile(位于您的项目中,通过查找器显示)编辑并添加此代码

web: App --env=production --workdir="./"
web: App --env=production --workdir=./ --config:servers.default.port=$PORT --config:postgresql.url=$DATABASE_URL

现在您可以将应用程序重新启动到heroku,您应该考虑从 Heroku 正确配置服务器,并从 Heroku 的界面使用其所有凭据和Postgresql附加组件

注意:不要忘记您所做的每一个更改,运行“vapor build”“vapor build --clean”

于 2017-01-04T09:29:51.473 回答
1

Vapor 4 + build stack heroku-20 + Heroku Postgres 的标准计划

Rijel David 的建议对我有用

unverifiedTLS语法略有变化

if let databaseURL = Environment.get("DATABASE_URL"), var postgresConfig = PostgresConfiguration(url: databaseURL) {
    postgresConfig.tlsConfiguration = .forClient(certificateVerification: .none)
    app.databases.use(.postgres(
        configuration: postgresConfig
    ), as: .psql)
} else {
    // ...
}

查看 Vapor 文档 - https://docs.vapor.codes/4.0/deploy/heroku/

于 2021-02-07T10:35:56.373 回答