无法访问H2数据库

时间:2019-04-03 05:21:11

标签: corda

我已经在两台机器上实现了Hellow世界示例https://docs.corda.net/hello-world-running.html。我在一台计算机上运行公证和甲方,而另一台计算机上运行乙方的地方。

发布事务后,我可以通过运行保管库查询通过Shell检查事务,但是我没有连接任何H2 DB URL并在H2 DB中检查事务。请帮助我知道,在哪里可以找到H2 DB URL?我认为用户名应为sa,密码为null。我已经在系统上安装了最新的H2 DB。

请帮助

I tried with DBVisulaiser but no Corda tables are reflecting in schema

1 个答案:

答案 0 :(得分:0)

您可以通过在deployNodes任务的build.gradle中指定以下URL来覆盖H2数据库URL。

node {
        name "O=Notary,L=Delhi,C=IN"
        notary = [validating : false]
        p2pPort 10004
        ......
        extraConfig = ['h2Settings.address' : 'localhost:1000']
    }