问题
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