Tools, FAQ, Tutorials:
Verify the WYFA Network
How to Verify the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial?
✍: FYIcenter.com
You can follow these steps to
verify the Hyperledger Fabric Network
to run the WYFA (Writing Your First Application) tutorial.
1. Connect to the CLI container:
$ docker exec -it cli bash bash-4.4#
2. Is the ledger peer running? Yes.
bash-4.4# echo $CORE_PEER_ADDRESS peer0.org1.example.com:7051 bash-4.4# peer node status status:STARTED
3. Is the ledger peer member of any channel? Yes.
bash-4.4# peer channel list Channels peers has joined: mychannel
4. Is there any chaincode running on the channel? No.
bash-4.4# peer chaincode list -C mychannel --instantiated Get instantiated chaincodes on channel mychannel:
See next tutorial on how to reinstall the chaincode.
⇒ Reinstall Chaincode on WYFA Network
2020-02-29, ∼1428🔥, 0💬
Popular Posts:
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
How To Change Text Fonts for Some Parts of a Paragraph? If you want to change text fonts or colors f...
How to how to use matched string and groups in replacements with re.sub()? When calling the re.sub()...
How To Access a Global Variable inside a Function? in PHP? By default, global variables are not acce...
What Happens If One Row Has Missing Columns? What happens if one row has missing columns? Most brows...