Tools, FAQ, Tutorials:
"configtxgen" Command - Build genesis.block
How to run "configtxgen" command to build the orderer genesis block for BYFN (Build Your First Network)?
✍: FYIcenter.com
You can follow this tutorial to run "configtxgen" command
to build Orderer Genesis Block for BYFN.
The "configtxgen" command file is located in the ../bin directory. It takes the configtx.yaml file as the input with the help of FABRIC_CFG_PATH environment variable:
$ cd hyperledger-binaries/fabric-samples/first-network $ export FABRIC_CFG_PATH=./ $ mkdir ./channel-artifacts $ ../bin/configtxgen -profile TwoOrgsOrdererGenesis -channelID byfn-sys-channel \ -outputBlock ./channel-artifacts/genesis.block ...[common.tools.configtxgen] main -> INFO 001 Loading configuration ...[common.tools.configtxgen.localconfig] completeInitialization \ -> INFO 002 orderer type: solo ...[common.tools.configtxgen.localconfig] Load -> INFO 003 Loaded configuration: \ /home/fyicenter/hyperledger-binaries/fabric-samples/first-network/configtx.yaml ...[common.tools.configtxgen.localconfig] completeInitialization \ -> INFO 004 orderer type: solo ...[common.tools.configtxgen.localconfig] LoadTopLevel -> INFO 005 Loaded configuration: \ /home/fyicenter/hyperledger-binaries/fabric-samples/first-network/configtx.yaml ...[common.tools.configtxgen] doOutputBlock -> INFO 006 Generating genesis block ...[common.tools.configtxgen] doOutputBlock -> INFO 007 Writing genesis block
The orderer genesis block is generated in the ./channel-artifacts sub-directory and named as "genesis.block":
$ ls -l ./channel-artifacts -rw-r--r-- 1 fyicenter 12988 Apr 1 01:26 genesis.block
Â
⇒ "configtxgen" Command - Build channel.tx
⇠BYFN configtx.yaml Configuration File
⇑ Hyperledger Fabric Sample Networks
⇑⇑ Hyperledger Tutorials
2020-10-20, 1058👍, 0💬
Popular Posts:
Where Can I get a copy of the RSS XML Schema? RSS XML Schema is an XML Schema that defines how an RS...
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....