Hi I have been following the tutorials in youtube it uses CLI container to add an org. Since using CLI container is not recommended to have in production environment how to add an org into the existing network withput using cli container
相关问题
- How to add a new Orderer Organization to existing
- How do you generate pool_transactions_genesis and
- chaincode in hyperledger composer vs chaincode in
- Send Raw Transaction Ethereum infura nodejs npm
- Hyperledger fabcar sample fabric showing connect f
相关文章
- When I generate MSP for some organization, I can c
- Does Composer needs an already built Fabric networ
- Hyperledger transaction verification
- Hyperledger Fabric - Error while Instantiating cha
- Hyperledger fabric's ChannelCreationPolicy
- Hyperledger fabric's ChannelCreationPolicy
- what kind of peer types does hyperledger have?
- How to retrieve user information from recent versi
the following tutorial from the IBM developer works, should help you further for the moment:
IBM Developer works description of configtxlator tool
At short:
The tool is available in the
cli
container or can be found here in the sources of the current master:https://github.com/hyperledger/fabric/tree/master/common/tools/configtxlator
And further, more complete samples are available here.
https://github.com/hyperledger/fabric/tree/master/examples/configtxupdate
Everything a CLI container can do can be done without a container. You need the peer or orderer binaries (configtx and configtxlator for network modifications) and access to the MSP crypto and a correct core.yaml and/or orderer.yaml. That's what's in the CLI containers now. For development I just use the existing peers and/or orderers, since they already have all of that.