Couldn't find network parameters file and compatibility zone wasn't configured/isn't reachable

烂漫一生 提交于 2020-02-05 14:06:09

问题


I am trying to handcraft a Node folder with following contents - Corda.jar (1.4), Node.conf, cordapp (Folder).

Receiving following error on Node startup (java -jar ./Corda.jar)

Logs can be found in                    : 
! ATTENTION: This node is running in development mode!  This is not safe for production deployment.

[ERROR] 15:20:24-0400 [main] internal.NodeStartupLogging.invoke - Exception during node startup: Couldn't find network parameters file and compatibility zone wasn't configured/isn't reachable. [errorCode=1917kd6, moreInformationAt=https://errors.corda.net/OS/4.0/1917kd6]

Following are the contents of Node.conf file :

devMode=true
myLegalName="O=PartyA,L=London,C=GB"
p2pAddress="localhost:10014"
rpcSettings {
    address="localhost:10015"
    adminAddress="localhost:10016"
}
security {
    authService {
        dataSource {
            type=INMEMORY
            users=[
                {
                    password=test1
                    permissions=[
                        ALL
                    ]
                    user=user1
                }
            ]
        }
    }
}

Expected : Node starts

Actual : Exception (above)

来源:https://stackoverflow.com/questions/55800326/couldnt-find-network-parameters-file-and-compatibility-zone-wasnt-configured-i

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!