我们的团队正在尝试执行
`java -jar network-bootstrapper.jar <nodes-root-dir>`
引导Corda节点。 Bootstrapping the network上的文档指示读者:
To use it, create a directory containing a node.conf file for each node >you want to create. Then run the following command:
java -jar network-bootstrapper.jar <nodes-root-dir>
For example running the command on a directory containing these files :
.
├── notary.conf // The notary's node.conf file
├── partya.conf // Party A's node.conf file
└── partyb.conf // Party B's node.conf file
Would generate directories containing three nodes: notary, partya and partyb.
我们有
java -jar network-bootstrapper.jar <nodes-root-dir>
这导致“找不到节点。”
答案 0 :(得分:1)
查看NetworkBootstrapper来源,我们发现文档不正确......
答案 1 :(得分:0)
引导程序报告No nodes found
,因为节点&#39; node.conf
个文件未以后缀_node.config
结尾。文档正在更新以反映此拉取请求中的此要求:github.com/corda/corda/pull/2848。
在evh69的答案中列出的第一步 - 将Corda JAR放在节点文件夹中 - 不是必需的。引导程序将根据需要自动提取自己的Corda JAR副本。