1. 程式人生 > >Hyperledger Fabric 1.0 Peer操作命令

Hyperledger Fabric 1.0 Peer操作命令

1.建立通道

$ peer channel create [flags], 常用引數為:
	`-o, --orderer: orderer節點的地址
	`-c, --channelID: 要建立的通道的ID, 必須小寫, 在250個字元以內
	`-f, --file: 由configtxgen 生成的通道檔案, 用於提交給orderer
	-t, --timeout: 建立通道的超時時長, 預設為5s
	`--tls: 通訊時是否使用tls加密
	`--cafile: 當前orderer節點pem格式的tls證書檔案, 要使用絕對路徑.
# orderer節點pem格式的tls證書檔案路徑參考: 
crypto-config/ordererOrganizations/itcast.com/orderers/orderer.itcast.com/msp/tlscacerts/tlsca.itcast.com-cert.pem

crypto-config/ordererOrganizations/itcast.com/orderers/orderer.itcast.com/msp/tlscacerts/tlsca.itcast.com-cert.pem

# example
$ peer channel create -o orderer節點地址:埠 -c 通道名 -f 通道檔案 --tls true
--cafile orderer節點pem格式的證書檔案 - orderer節點地址: 可以是IP地址或者域名 - orderer節點監聽的是7050埠 $ peer channel create -o orderer.itcast.com:7050 -c itcastchannel -f ./channel-artifacts/channel.tx --tls true --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/itcast.com/msp/tlscacerts/tlsca.itcast.com-cert.pem crypto-config/ordererOrganizations/itcast.com/msp/tlscacerts # 在當前工作目錄下生成一個檔案: 通道名.block, 本例: itcastchannel.block $ ls
channel-artifacts crypto `
itcastchannel.block` --> 生成的檔案

2. 加入通道

$ peer channel join[flags], 常用引數為:
	`-b, --blockpath: 通過 peer channel create 命令生成的通道檔案 
# example
````shell
$ peer channel join -b 生成的通道block檔案
$ peer channel join -b itcastchannel.block 

3.更新錨節點

$ peer channel update [flags], 常用引數為:
	`
-o, --orderer: orderer節點的地址 `
-c, --channelID: 要建立的通道的ID, 必須小寫, 在250個字元以內 `-f, --file: 由configtxgen 生成的組織錨節點檔案, 用於提交給orderer `--tls: 通訊時是否使用tls加密 `--cafile: 當前orderer節點pem格式的tls證書檔案, 要使用絕對路徑. # orderer節點pem格式的tls證書檔案路徑參考: crypto-config/ordererOrganizations/itcast.com/orderers/orderer.itcast.com/msp/tlscacerts/tlsca.itcast.com-cert.pem # example $ peer channel update -o orderer節點地址:埠 -c 通道名 -f 錨節點更新檔案 --tls true --cafile orderer節點pem格式的證書檔案

4. 安裝鏈碼

$ peer chaincode install [flags], 常用引數為:
	-c, --ctor: JSON格式的構造引數, 預設是"{}"
	`-l, --lang: 編寫chaincode的程式語言, 預設值是 golang
	`-n, --name: chaincode的名字
	`-p, --path: chaincode原始碼的目錄, 從 $GOPATH/src 路徑後開始寫
	`-v, --version: 當前操作的chaincode的版本, 適用這些命令install/instantiate/upgrade
# example
$ peer chaincode install -n 鏈碼的名字 -v 鏈碼的版本 -l 鏈碼的語言 -p 鏈碼的位置
	- 鏈碼名字自己起
	- 鏈碼的版本, 自己根據實際情況指定
$ peer chaincode install -n testcc -v 1.0 -l golang -p github.com/chaincode

5.鏈碼初始化

$ peer chaincode instantiate [flags], 常用引數為:
	`-C,--channelID:當前命令執行的通道,預設值是“testchainid"。
	`-c, --ctor:JSON格式的構造引數,預設值是“{}"
	`-l,--lang:編寫Chaincode的程式語言,預設值是golang
	`-n,--name:Chaincode的名字。
	`-P,--policy:當前Chaincode的背書策略。
	`-v,--version:當前操作的Chaincode的版本,適用於install/instantiate/upgrade等命令
	`--tls: 通訊時是否使用tls加密
	`--cafile: 當前orderer節點pem格式的tls證書檔案, 要使用絕對路徑.
# example
# -c '{"Args":["init","a","100","b","200"]}' 
# -P "AND ('OrgGoMSP.member', 'OrgCppMSP.member')"
$ peer chaincode instantiate -o orderer節點地址:埠 --tls true --cafile orderer節點pem格式的證書檔案 -C 通道名稱 -n 鏈碼名稱 -l 鏈碼語言 -v 鏈碼版本 -c 鏈碼Init函式呼叫 -P 背書策略
$ peer chaincode instantiate -o orderer.itcast.com:7050 --tls true --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/itcast.com/msp/tlscacerts/tlsca.itcast.com-cert.pem -C itcastchannel -n testcc -l golang -v 1.0 -c '{"Args":["init","a","100","b","200"]}' -P "AND ('OrgGoMSP.member', 'OrgCppMSP.member')"

6.查詢

$ peer chaincode query [flags], 常用引數為:
	`-n,--name:Chaincode的名字。
	`-C,--channelID:當前命令執行的通道,預設值是“testchainid"
	`-c, --ctor:JSON格式的構造引數,預設值是“{}"
	-x,--hex:是否對輸出的內容進行編碼處理
	-r,--raw:是否輸出二進位制內容
	-t, --tid: 指定當前查詢的編號
# example
# '{"Args":["query","a"]}'
$ peer chaincode query -C 通道名稱 -n 鏈碼名稱 -c 鏈碼呼叫

7.交易

$ peer chaincode invoke [flags], 常用引數為:
	`-o, --orderer: orderer節點的地址
	`-C,--channelID:當前命令執行的通道,預設值是“testchainid"
	`-c, --ctor:JSON格式的構造引數,預設值是“{}"
	`-n,--name:Chaincode的名字
	`--tls: 通訊時是否使用tls加密
	`--cafile: 當前orderer節點pem格式的tls證書檔案, 要使用絕對路徑.
	`--peerAddresses: 指定要連線的peer節點的地址
	`--tlsRootCertFiles: 連線的peer節點的TLS根證書
# 連線的peer節點的TLS根證書查詢路徑參考:
/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orggo.itcast.com/peers/peer0.orggo.itcast.com/tls/ca.crt
# example
# -c '{"Args":["invoke","a","b","10"]}'
$ peer chaincode invoke -o orderer節點地址:埠 --tls true --cafile orderer節點pem格式的證書檔案 -C 通道名稱 -n 鏈碼名稱 --peerAddresses 背書節點1:埠 --tlsRootCertFiles 背書節點1的TLS根證書    --peerAddresses 背書節點2:埠 --tlsRootCertFiles 背書節點2的TLS根證書 -c 交易鏈碼呼叫

通過客戶端操作各節點

客戶端對Peer節點的操作流程:

  • 建立通道, 通過客戶端節點來完成
# 在宿主機
$ docker-compose ps
         Name                 Command       State                        Ports                      
----------------------------------------------------------------------------------------------------
cli                       /bin/bash         Up                                                      
orderer.itcast.com        orderer           Up      0.0.0.0:7050->7050/tcp                          
peer0.orgcpp.itcast.com   peer node start   Up      0.0.0.0:9051->7051/tcp, 0.0.0.0:9053->7053/tcp  
peer0.orggo.itcast.com    peer node start   Up      0.0.0.0:7051->7051/tcp, 0.0.0.0:7053->7053/tcp  
peer1.orgcpp.itcast.com   peer node start   Up      0.0.0.0:10051->7051/tcp, 0.0.0.0:10053->7053/tcp
peer1.orggo.itcast.com    peer node start   Up      0.0.0.0:8051->7051/tcp, 0.0.0.0:8053->7053/tcp 
# 進入到客戶端對用的容器中
$ docker exec -it cli /bin/bash
  • 將每個組織的每個節點都加入到通道中 -> 客戶端來完成的
    • 以客戶端同時只能連線以peer節點
  • 給每個peer節點安裝智慧合約 -> 鏈程式碼(程式: go, node.js, java)
  • 對智慧合約進行初始化 , 對應智慧合約中的 Init 函式
    • 只需要在任意節點初始化一次, 資料會自動同步的各個組織的各個節點
  • 對資料進行查詢 -> 讀
  • 對資料進行呼叫 -> 寫

經過前面的講解我們都知道, 一個客戶端只能連線一個指定的節點, 如果想要該客戶端連線其他節點, 那麼就必須修改當前客戶端中相關的環境變數

相關環境變數

# 第1個節點 Go組織的 peer0
export CORE_PEER_ADDRESS=peer0.orggo.itcast.com:7051
export CORE_PEER_LOCALMSPID=OrgGoMSP
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orggo.itcast.com/users/[email protected]/msp
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orggo.itcast.com/peers/peer0.orggo.itcast.com/tls/ca.crt
export CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orggo.itcast.com/peers/peer0.orggo.itcast.com/tls/server.crt
export CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orggo.itcast.com/peers/peer0.orggo.itcast.com/tls/server.key

# 第2個節點 Go組織的 peer1
export CORE_PEER_ADDRESS=peer1.orggo.itcast.com:7051
export CORE_PEER_LOCALMSPID=OrgGoMSP
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orggo.itcast.com/users/[email protected]/msp
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orggo.itcast.com/peers/peer1.orggo.itcast.com/tls/ca.crt
export CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orggo.itcast.com/peers/peer1.orggo.itcast.com/tls/server.crt
export CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orggo.itcast.com/peers/peer1.orggo.itcast.com/tls/server.key

# 第3個節點 Cpp組織的 peer0
export CORE_PEER_ADDRESS=peer0.orgcpp.itcast.com:7051
export CORE_PEER_LOCALMSPID=OrgCppMSP
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orgcpp.itcast.com/users/[email protected]/msp
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orgcpp.itcast.com/peers/peer0.orgcpp.itcast.com/tls/ca.crt
export CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orgcpp.itcast.com/peers/peer0.orgcpp.itcast.com/tls/server.crt
export CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orgcpp.itcast.com/peers/peer0.orgcpp.itcast.com/tls/server.key

# 第4個節點 Cpp組織的 peer1
export CORE_PEER_ADDRESS=peer1.orgcpp.itcast.com:7051
export CORE_PEER_LOCALMSPID=OrgCppMSP
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orgcpp.itcast.com/users/[email protected]/msp
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orgcpp.itcast.com/peers/peer1.orgcpp.itcast.com/tls/ca.crt
export CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orgcpp.itcast.com/peers/peer1.orgcpp.itcast.com/tls/server.crt
export CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/orgcpp.itcast.com/peers/peer1.orgcpp.itcast.com/tls/server.key

1對peer0.OrgGo的操作

  • 要保證客戶端操作的是peer0.OrgGo
    • 可以檢視: echo $CORE_PEER_ADDRESS
  • 將當前節點加入到通道中
    • peer channel join -b xxx.block
  • 安裝鏈程式碼
    • peer chaincode install [flags]
  • 鏈程式碼的初始化 -> 只需要做一次
    • peer chaincode instantiate [flag]
  • 查詢/呼叫

2 對peer1.OrgGo的操作

  • 要保證客戶端操作的是peer1.OrgGo
    • 可以檢視: echo $CORE_PEER_ADDRESS
    • 不是修改環境變數
  • 將當前節點加入到通道中
    • peer channel join -b xxx.block
  • 安裝鏈程式碼
    • peer chaincode install [flags]
  • 查詢/呼叫

3 對peer0.OrgCpp的操作

  • 要保證客戶端操作的是peer1.OrgGo
    • 可以檢視: echo $CORE_PEER_ADDRESS
    • 不是修改環境變數
  • 將當前節點加入到通道中
    • peer channel join -b xxx.block
  • 安裝鏈程式碼
    • peer chaincode install [flags]
  • 查詢/呼叫

4 對peer1.OrgCpp的操作

  • 要保證客戶端操作的是peer1.OrgGo
    • 可以檢視: echo $CORE_PEER_ADDRESS
    • 不是修改環境變數
  • 將當前節點加入到通道中
    • peer channel join -b xxx.block
  • 安裝鏈程式碼
    • peer chaincode install [flags]
  • 查詢/呼叫