Tools, FAQ, Tutorials:
Upgrade Chaincode Instance on BYFN
How to upgrade chaincode instance on BYFN?
✍: FYIcenter.com
You can follow this tutorial to upgrade the chaincode instance on BYFN.
You can use this process to fix any issues with chaincode instance
without destroy its data.
1. Install new version, 2.0, of the chaincode on the default peer, peer0.org1.
bash-4.4# echo $CORE_PEER_ADDRESS peer0.org1.example.com:7051 bash-4.4# peer chaincode install -n mycc -v 2.0 -l golang \ -p github.com/chaincode/chaincode_example02/go/ [chaincodeCmd] checkChaincodeCmdParams -> INFO 001 Using default escc [chaincodeCmd] checkChaincodeCmdParams -> INFO 002 Using default vscc [chaincodeCmd] submitInstallProposal -> INFO 003 Installed remotely: response:<status:200 payload:"OK" >
2. Install new version, 2.0, of the chaincode 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 chaincode install -n mycc -v 2.0 -l golang \ -p github.com/chaincode/chaincode_example02/go/ [chaincodeCmd] checkChaincodeCmdParams -> INFO 001 Using default escc [chaincodeCmd] checkChaincodeCmdParams -> INFO 002 Using default vscc [chaincodeCmd] submitInstallProposal -> INFO 003 Installed remotely: response:<status:200 payload:"OK" >
3. Upgrade the chaincode instance, mycc, from default peer.
bash-4.4# export ORDERER_CA=/opt/gopath/src/github.com/hyperledger/fabric\
/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com\
/msp/tlscacerts/tlsca.example.com-cert.pem
bash-4.4# peer chaincode upgrade -o orderer.example.com:7050 --tls \
--cafile $ORDERER_CA -C mychannel -n mycc -v 2.0 \
-c '{"Args":["init","a","100","b","200"]}' \
-P "AND ('Org1MSP.peer','Org2MSP.peer')"
[chaincodeCmd] checkChaincodeCmdParams -> INFO 001 Using default escc
[chaincodeCmd] checkChaincodeCmdParams -> INFO 002 Using default vscc
4. Verify the chaincode instance, mycc, from default peer.
bash-4.4# peer chaincode list --instantiated -C mychannel Get instantiated chaincodes on channel mychannel: Name: mycc, Version: 2.0, Path: github.com/chaincode/chaincode_example02/go/, Escc: escc, Vscc: vscc
As you can see, the chaincode, mycc, is running as version 2.0. Both peers, peer0.org1 and peer0.org2, should have the same Golang code to support it now.
⇒ Remove Older Versions Chaincode Containers
⇐ Uninstall Chaincode on BYFN Peers
2020-09-12, ∼1382🔥, 1💬
Popular Posts:
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an ...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...