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
⇑ WYFA (Writing Your First Application)
⇑⇑ Hyperledger Tutorials
2020-02-29, 860👍, 0💬
Popular Posts:
How to add request query string Parameters to my Azure API operation to make it more user friendly? ...
Can You Specify the "new line" Character in Single-Quoted Strings? You can not specify the "new line...
How to pull NVIDIA CUDA Docker Image with the "docker image pull nvidia/cuda" command? If you are ru...
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
How to add request body examples to my Azure API operation to make it more user friendly? If you hav...