我被困住了,试图将 azure postgres 与 corda 集成。我正在使用 gradle 的 deployNodes 任务在本地创建网络。
下面是我得到的例外。
[ERROR] 2021-09-06T06:53:02,290Z [main] internal.NodeStartupLogging. - Exception during node startup: Couldn't find network parameters file and compatibility zone wasn't configured/isn't reachable. - Couldn't find network parameters file and compatibility zone wasn't configured/isn't reachable. [errorCode=1917kd6, moreInformationAt=https://errors.corda.net/OS/4.5/1917kd6]
当连接到我的机器上安装的本地 postgres 实例时,我没有任何问题。
下面给出的是出错的 azure postgres 配置。
extraConfig = [
'dataSourceProperties' : [
'dataSourceClassName': 'org.postgresql.ds.PGSimpleDataSource',
'dataSource.url': 'jdbc:postgresql://azure_database_name.postgres.database.azure.com:5432/demo?searchpath=demo_schema?ssl=true',
'dataSource.user': 'userN@me@azure_database_name',
'dataSource.password': 'pa$$word'
]