我们需要改变我们的Corda网络基础设施。目前我们正在使用一个网络图,三个公证处(RAFT)和四个额外的节点。
我们将用新服务器替换我们的网络图和一个公证服务器(notaryCluster one)。
我们的计划是执行以下步骤:
1. Stop all Nodes
2. Change all node.conf files needed to point to new networkmap and new notary
3. Deploy Networkmap and Notary service in new servers from scratch (not reusing data from old notary and network map)
4. Start new network map, start new notary servers, and rest of nodes (not old network and notary)此过程是否正确,以确保现有事务将保留在系统中并能够使用它们?
谢谢!!
发布于 2018-04-26 01:31:20
有几件事你需要考虑
-停止所有节点
您需要考虑当前正在运行的任何流,以执行节点的干净关闭。Corda 3.1版本增加了一个“排出模式”特性,通过这个特性:
需要通过RPC启动新流的
-从头开始在新服务器中部署网络地图和公证服务(不重用旧公证和网络地图中的数据)
您可能希望保留来自旧公证人的数据,否则公证人将失去对已使用状态的跟踪,并且网络将失去防止重复支出的保证。
https://stackoverflow.com/questions/49975210
复制相似问题