Tools, FAQ, Tutorials:
BYFN CLI "peer" Command Prefix
How to use BYFN CLI "peer" Command Prefix?
✍: FYIcenter.com
By default, when you run the "peer" command on the BYFN CLI container, it will be executed again the default peer node specified by 4 environment variables:
CORE_PEER_MSPCONFIGPATH=/opt/gopath/.../org1.example.com/users/Admin@org1.example.com/msp CORE_PEER_ADDRESS=peer0.org1.example.com:7051 CORE_PEER_LOCALMSPID=Org1MSP CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/.../org2.example.com/peers/peer0.org1.example.com/tls/ca.crt
If you want to switch to different peer node, you have to re-define those 4 variables, which takes 4 commands to do.
Another quick solution is to prefix the "peer" command to override those variables. For example, the following command list installed chaincodes on peer0.org2 peer node, not the default peer node.
1. Connect to the BYFN CLI container and check the default peer:
$ docker exec -it cli bash bash-4.4# echo $CORE_PEER_ADDRESS peer0.org2.example.com:7051
2. Run "peer" command on default peer, peer0.org1:
bash-4.4# peer node status status:STARTED
1. Run "peer" command on peer0.org2:
bash-4.4# CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger\ /fabric/peer/crypto/peerOrganizations/org2.example.com/users\ /Admin@org2.example.com/msp CORE_PEER_ADDRESS=peer0.org2.example.com:7051 \ CORE_PEER_LOCALMSPID=Org2MSP CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src\ /github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com\ /peers/peer0.org2.example.com/tls/ca.crt \ peer node status status:STARTED
2. Run "peer" command on pee0.org2:
bash-4.4# CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger\ /fabric/peer/crypto/peerOrganizations/org2.example.com/users\ /Admin@org2.example.com/msp CORE_PEER_ADDRESS=peer0.org2.example.com:7051 \ CORE_PEER_LOCALMSPID=Org2MSP CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src\ /github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com\ /peers/peer0.org2.example.com/tls/ca.crt \ peer node status status:STARTED
⇒ Incompatible Chaincode on BYFN Peers
⇐ Invoke Chaincode Transaction on BYFN Channel
2020-09-15, 1030🔥, 0💬
Popular Posts:
What validation keywords I can use in JSON Schema to specifically validate JSON Array values? The cu...
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...
How To Submit Values without Using a Form in PHP? If you know the values you want to submit, you can...