深入理解Fabric環境搭建的詳細過程

深藍發表於2017-08-30

博主之前的文章都是教大家怎麼快速的搭建一個Fabric的環境,但是其中大量的工作都隱藏到了官方的指令碼中,並不方便大家深入理解其中的過程,所以博主這裡就將其中的過程一步步分解,方便大家!

前面的準備工作我就不用多說了,也就是各種軟體和開發環境的安裝,安裝好以後,我們git clone下來最新的程式碼,並切換到v1.0.0,並且下載好我們需要使用的docker映象,也就是到步驟6,接下來我們要解析的是之後的步驟,也就是真正的搭建Fabric的過程。

1.生成公私鑰和證書

Fabric中有兩種型別的公私鑰和證書,一種是給節點之前通訊安全而準備的TLS證書,另一種是使用者登入和許可權控制的使用者證書。這些證書本來應該是由CA來頒發,但是我們這裡是測試環境,並沒有啟用CA節點,所以Fabric幫我們提供了一個工具:cryptogen。

1.1編譯生成cryptogen

我們既然獲得了Fabric的原始碼,那麼就可以輕易的使用make命令編譯需要的程式。Fabric官方提供了專門編譯cryptogen的入口,我們只需要執行以下命令即可:

cd ~/go/src/github.com/hyperledger/fabric
make cryptogen

執行後系統返回結果:

build/bin/cryptogen 
CGO_CFLAGS=" " GOBIN=/home/studyzy/go/src/github.com/hyperledger/fabric/build/bin go install -tags "" -ldflags "-X github.com/hyperledger/fabric/common/tools/cryptogen/metadata.Version=1.0.0" github.com/hyperledger/fabric/common/tools/cryptogen 
Binary available as build/bin/cryptogen

也就是說我們在build/bin資料夾下可以看到編譯出來的cryptogen程式。

1.2配置crypto-config.yaml

examples/e2e_cli/crypto-config.yaml已經提供了一個Orderer Org和兩個Peer Org的配置,該模板中也對欄位進行了註釋。我們可以把Org2拿來分析一下:

- Name: Org2 
  Domain: org2.example.com 
  Template: 
    Count: 2 
  Users: 
    Count: 1

Name和Domain就是關於這個組織的名字和域名,這主要是用於生成證書的時候,證書內會包含該資訊。而Template Count=2是說我們要生成2套公私鑰和證書,一套是peer0.org2的,還有一套是peer1.org2的。最後Users. Count=1是說每個Template下面會有幾個普通User(注意,Admin是Admin,不包含在這個計數中),這裡配置了1,也就是說我們只需要一個普通使用者User1@org2.example.com 我們可以根據實際需要調整這個配置檔案,增刪Org Users等。

1.3生成公私鑰和證書

我們配置好crypto-config.yaml檔案後,就可以用cryptogen去讀取該檔案,並生成對應的公私鑰和證書了:

cd examples/e2e_cli/
../../build/bin/cryptogen generate --config=./crypto-config.yaml

生成的檔案都儲存到crypto-config資料夾,我們可以進入該資料夾檢視生成了哪些檔案:

tree crypto-config

2.生成創世區塊和Channel配置區塊

2.1編譯生成configtxgen

與前面1.1說到的類似,我們可以通過make命令生成configtxgen程式:

cd ~/go/src/github.com/hyperledger/fabric

make configtxgen

執行後的結果為:

build/bin/configtxgen 
CGO_CFLAGS=" " GOBIN=/home/studyzy/go/src/github.com/hyperledger/fabric/build/bin go install -tags "nopkcs11" -ldflags "-X github.com/hyperledger/fabric/common/configtx/tool/configtxgen/metadata.Version=1.0.0" github.com/hyperledger/fabric/common/configtx/tool/configtxgen 
Binary available as build/bin/configtxgen

2.2配置configtx.yaml

官方提供的examples/e2e_cli/configtx.yaml這個檔案裡面配置了由2個Org參與的Orderer共識配置TwoOrgsOrdererGenesis,以及由2個Org參與的Channel配置:TwoOrgsChannel。Orderer可以設定共識的演算法是Solo還是Kafka,以及共識時區塊大小,超時時間等,我們使用預設值即可,不用更改。而Peer節點的配置包含了MSP的配置,錨節點的配置。如果我們有更多的Org,或者有更多的Channel,那麼就可以根據模板進行對應的修改。

2.3生成創世區塊

配置修改好後,我們就用configtxgen 生成創世區塊。並把這個區塊儲存到本地channel-artifacts資料夾中:

cd examples/e2e_cli/

../../build/bin/configtxgen -profile TwoOrgsOrdererGenesis -outputBlock ./channel-artifacts/genesis.block

2.4生成Channel配置區塊

../../build/bin/configtxgen -profile TwoOrgsChannel -outputCreateChannelTx ./channel-artifacts/channel.tx -channelID mychannel

另外關於錨節點的更新,我們也需要使用這個程式來生成檔案:

../../build/bin/configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./channel-artifacts/Org1MSPanchors.tx -channelID mychannel -asOrg Org1MSP

../../build/bin/configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./channel-artifacts/Org2MSPanchors.tx -channelID mychannel -asOrg Org2MSP

最終,我們在channel-artifacts資料夾中,應該是能夠看到4個檔案。

channel-artifacts/
├── channel.tx
├── genesis.block
├── Org1MSPanchors.tx
└── Org2MSPanchors.tx

3.配置Fabric環境的docker-compose檔案

前面對節點和使用者的公私鑰以及證書,還有創世區塊都生成完畢,接下來我們就可以配置docker-compose的yaml檔案,啟動Fabric的Docker環境了。

3.1配置Orderer

Orderer的配置是在base/docker-compose-base.yaml裡面,我們看看其中的內容:

orderer.example.com: 
  container_name: orderer.example.com 
  image: hyperledger/fabric-orderer 
  environment: 
    - ORDERER_GENERAL_LOGLEVEL=debug 
    - ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 
    - ORDERER_GENERAL_GENESISMETHOD=file 
    - ORDERER_GENERAL_GENESISFILE=/var/hyperledger/orderer/orderer.genesis.block 
    - ORDERER_GENERAL_LOCALMSPID=OrdererMSP 
     - ORDERER_GENERAL_LOCALMSPDIR=/var/hyperledger/orderer/msp 
     # enabled TLS 
    - ORDERER_GENERAL_TLS_ENABLED=true 
    - ORDERER_GENERAL_TLS_PRIVATEKEY=/var/hyperledger/orderer/tls/server.key 
    - ORDERER_GENERAL_TLS_CERTIFICATE=/var/hyperledger/orderer/tls/server.crt 
    - ORDERER_GENERAL_TLS_ROOTCAS=[/var/hyperledger/orderer/tls/ca.crt] 
  working_dir: /opt/gopath/src/github.com/hyperledger/fabric 
  command: orderer 
  volumes: 
  - ../channel-artifacts/genesis.block:/var/hyperledger/orderer/orderer.genesis.block 
  - ../crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp:/var/hyperledger/orderer/msp 
  - ../crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/:/var/hyperledger/orderer/tls 
  ports: 
    - 7050:7050

這裡主要關心的是,ORDERER_GENERAL_GENESISFILE=/var/hyperledger/orderer/orderer.genesis.block,而這個創世區塊就是我們之前建立的創世區塊,這裡就是Host到Docker的對映:

  - ../channel-artifacts/genesis.block:/var/hyperledger/orderer/orderer.genesis.block

另外的配置主要是TL,Log等,最後暴露出服務埠7050。

3.2配置Peer

Peer的配置是在base/docker-compose-base.yaml和peer-base.yaml裡面,我們摘取其中的peer0.org1看看其中的內容:

peer-base: 
  image: hyperledger/fabric-peer 
  environment: 
    - CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock 
    # the following setting starts chaincode containers on the same 
    # bridge network as the peers 
    # https://docs.docker.com/compose/networking/ 
    - CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=e2ecli_default 
    #- CORE_LOGGING_LEVEL=ERROR 
    - CORE_LOGGING_LEVEL=DEBUG 
    - CORE_PEER_TLS_ENABLED=true 
    - CORE_PEER_GOSSIP_USELEADERELECTION=true 
    - CORE_PEER_GOSSIP_ORGLEADER=false 
    - CORE_PEER_PROFILE_ENABLED=true 
    - CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/tls/server.crt 
    - CORE_PEER_TLS_KEY_FILE=/etc/hyperledger/fabric/tls/server.key 
    - CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/tls/ca.crt 
  working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer 
  command: peer node start

peer0.org1.example.com: 
  container_name: peer0.org1.example.com 
  extends: 
    file: peer-base.yaml 
    service: peer-base 
  environment: 
    - CORE_PEER_ID=peer0.org1.example.com 
    - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 
    - CORE_PEER_CHAINCODELISTENADDRESS=peer0.org1.example.com:7052 
    - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org1.example.com:7051 
    - CORE_PEER_LOCALMSPID=Org1MSP 
  volumes: 
      - /var/run/:/host/var/run/ 
      - ../crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp:/etc/hyperledger/fabric/msp 
      - ../crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls:/etc/hyperledger/fabric/tls 
  ports: 
    - 7051:7051 
     - 7052:7052 
    - 7053:7053

在Peer的配置中,主要是給Peer分配好各種服務的地址,以及TLS和MSP資訊。

3.3配置CLI

CLI在整個Fabric網路中扮演客戶端的角色,我們在開發測試的時候可以用CLI來代替SDK,執行各種SDK能執行的操作。CLI會和Peer相連,把指令傳送給對應的Peer執行。CLI的配置在docker-compose-cli.yaml中,我們看看其中的內容:

cli: 
  container_name: cli 
  image: hyperledger/fabric-tools 
  tty: true 
  environment: 
    - GOPATH=/opt/gopath 
    - CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock 
    - CORE_LOGGING_LEVEL=DEBUG 
    - CORE_PEER_ID=cli 
    - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 
    - CORE_PEER_LOCALMSPID=Org1MSP 
    - CORE_PEER_TLS_ENABLED=true 
    - CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt 
    - CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key 
    - CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt 
    - CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp 
  working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer 
  command: /bin/bash -c './scripts/script.sh ${CHANNEL_NAME}; sleep $TIMEOUT' 
  volumes: 
      - /var/run/:/host/var/run/ 
      - ../chaincode/go/:/opt/gopath/src/github.com/hyperledger/fabric/examples/chaincode/go 
      - ./crypto-config:/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ 
       - ./scripts:/opt/gopath/src/github.com/hyperledger/fabric/peer/scripts/ 
      - ./channel-artifacts:/opt/gopath/src/github.com/hyperledger/fabric/peer/channel-artifacts 
  depends_on: 
    - orderer.example.com 
    - peer0.org1.example.com 
    - peer1.org1.example.com 
    - peer0.org2.example.com 
    - peer1.org2.example.com 

從這裡我們可以看到,CLI啟動的時候預設連線的是peer0.org1.example.com,並且啟用了TLS。預設是以Admin@org1.example.com這個身份連線到Peer的。CLI啟動的時候,會去執行./scripts/script.sh 指令碼,這個指令碼也就是fabric/examples/e2e_cli/scripts/script.sh 這個指令碼,這個指令碼完成了Fabric環境的初始化和ChainCode的安裝及執行,也就是接下來要講的步驟4和5.在檔案對映配置上,我們注意到../chaincode/go/:/opt/gopath/src/github.com/hyperledger/fabric/examples/chaincode/go,也就是說我們要安裝的ChainCode都是在fabric/examples/chaincode/go目錄下,以後我們要開發自己的ChainCode,只需要把我們的程式碼複製到該目錄即可。

【注意:請註釋掉cli中command這一行,我們不需要CLI啟動的時候自動執行指令碼,我們在步驟4,5要一步步的手動執行!】

4.初始化Fabric環境

4.1啟動Fabric環境的容器

我們將整個Fabric Docker環境的配置放在docker-compose-cli.yaml後,只需要使用以下命令即可:

docker-compose -f docker-compose-cli.yaml up -d

最後這個-d引數如果不加,那麼當前終端就會一直附加在docker-compose上,而如果加上的話,那麼docker容器就在後臺執行。執行docker ps命令可以看啟動的結果:

CONTAINER ID        IMAGE                        COMMAND             CREATED             STATUS              PORTS                                                                       NAMES
6f98f57714b5        hyperledger/fabric-tools     "/bin/bash"         8 seconds ago       Up 7 seconds                                                                                    cli
6e7b3fd0e803        hyperledger/fabric-peer      "peer node start"   11 seconds ago      Up 8 seconds        0.0.0.0:10051->7051/tcp, 0.0.0.0:10052->7052/tcp, 0.0.0.0:10053->7053/tcp   peer1.org2.example.com
9e67abfb982f        hyperledger/fabric-orderer   "orderer"           11 seconds ago      Up 8 seconds        0.0.0.0:7050->7050/tcp                                                      orderer.example.com
908d7fe2a4c7        hyperledger/fabric-peer      "peer node start"   11 seconds ago      Up 9 seconds        0.0.0.0:7051-7053->7051-7053/tcp                                            peer0.org1.example.com
6bb187ac10ec        hyperledger/fabric-peer      "peer node start"   11 seconds ago      Up 10 seconds       0.0.0.0:9051->7051/tcp, 0.0.0.0:9052->7052/tcp, 0.0.0.0:9053->7053/tcp      peer0.org2.example.com
150baa520ed0        hyperledger/fabric-peer      "peer node start"   12 seconds ago      Up 9 seconds        0.0.0.0:8051->7051/tcp, 0.0.0.0:8052->7052/tcp, 0.0.0.0:8053->7053/tcp      peer1.org1.example.com

可以看到1Orderer+4Peer+1CLI都啟動了。

4.2建立Channel

現在我們要進入cli容器內部,在裡面建立Channel。先用以下命令進入CLI內部Bash:

docker exec -it cli bash

建立Channel的命令是peer channel create,我們前面建立2.4建立Channel的配置區塊時,指定了Channel的名字是mychannel,那麼這裡我們必須建立同樣名字的Channel。

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

peer channel create -o orderer.example.com:7050 -c mychannel -f ./channel-artifacts/channel.tx --tls true --cafile $ORDERER_CA

執行該命令後,系統會提示:

2017-08-29 20:36:47.486 UTC [channelCmd] readBlock -> DEBU 020 Received block:0

系統會在cli內部的當前目錄建立一個mychannel.block檔案,這個檔案非常重要,接下來其他節點要加入這個Channel就必須使用這個檔案。

4.3各個Peer加入Channel

前面說過,我們CLI預設連線的是peer0.org1,那麼我們要將這個Peer加入mychannel就很簡單,只需要執行如下命令:

peer channel join -b mychannel.block

系統返回訊息:

2017-08-29 20:40:27.053 UTC [channelCmd] executeJoin -> INFO 006 Peer joined the channel!

那麼其他幾個Peer又該怎麼加入Channel呢?這裡就需要修改CLI的環境變數,使其指向另外的Peer。比如我們要把peer1.org1加入mychannel,那麼命令是:

CORE_PEER_LOCALMSPID="Org1MSP" 
CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt 
CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp 
CORE_PEER_ADDRESS=peer1.org1.example.com:7051

peer channel join -b mychannel.block

系統會返回成功加入Channel的訊息。

同樣的方法,將peer0.org2加入mychannel:

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 
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

peer channel join -b mychannel.block

最後把peer1.org2加入mychannel:

CORE_PEER_LOCALMSPID="Org2MSP" 
CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt 
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=peer1.org2.example.com:7051

peer channel join -b mychannel.block

4.4更新錨節點

關於AnchorPeer,我理解的不夠深刻,經過我的測試,即使沒有設定錨節點的情況下,整個Fabric網路仍然是能正常執行的。

對於Org1來說,peer0.org1是錨節點,我們需要連線上它並更新錨節點:

CORE_PEER_LOCALMSPID="Org1MSP" 
CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt 
CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp 
CORE_PEER_ADDRESS=peer0.org1.example.com:7051

peer channel update -o orderer.example.com:7050 -c mychannel -f ./channel-artifacts/Org1MSPanchors.tx --tls true --cafile $ORDERER_CA

另外對於Org2,peer0.org2是錨節點,對應的更新程式碼是:

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 
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

peer channel update -o orderer.example.com:7050 -c mychannel -f ./channel-artifacts/Org2MSPanchors.tx --tls true --cafile $ORDERER_CA

5.鏈上程式碼的安裝與執行

以上,整個Fabric網路和Channel都準備完畢,接下來我們來安裝和執行ChainCode。這裡仍然以最出名的Example02為例。這個例子實現了a,b兩個賬戶,相互之間可以轉賬。

5.1Install ChainCode安裝鏈上程式碼

鏈上程式碼的安裝需要在各個相關的Peer上進行,對於我們現在這種Fabric網路,如果4個Peer都想對Example02進行操作,那麼就需要安裝4次。

仍然是保持在CLI的命令列下,我們先切換到peer0.org1這個節點:

CORE_PEER_LOCALMSPID="Org1MSP" 
CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt 
CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp 
CORE_PEER_ADDRESS=peer0.org1.example.com:7051

使用peer chaincode install命令可以安裝指定的ChainCode並對其命名:

peer chaincode install -n mycc -v 1.0 -p github.com/hyperledger/fabric/examples/chaincode/go/chaincode_example02

安裝的過程其實就是對CLI中指定的程式碼進行編譯打包,並把打包好的檔案傳送到Peer,等待接下來的例項化。

其他節點由於暫時還沒使用到,我們可以先不安裝,等到了步驟5.4的時候再安裝。

5.2Instantiate ChainCode例項化鏈上程式碼

例項化鏈上程式碼主要是在Peer所在的機器上對前面安裝好的鏈上程式碼進行包裝,生成對應Channel的Docker映象和Docker容器。並且在例項化時我們可以指定背書策略。我們執行以下命令完成例項化:

peer chaincode instantiate -o orderer.example.com:7050 --tls true --cafile $ORDERER_CA -C mychannel -n mycc -v 1.0 -c '{"Args":["init","a","100","b","200"]}' -P "OR      ('Org1MSP.member','Org2MSP.member')"

如果我們新開一個Ubuntu終端,去檢視peer0.org1上的日誌,那麼就可以知道整個例項化的過程到底幹了什麼:

docker logs -f peer0.org1.example.com

主要幾行重要的日誌:

2017-08-29 21:14:12.290 UTC [chaincode-platform] generateDockerfile -> DEBU 3fd 
FROM hyperledger/fabric-baseos:x86_64-0.3.1 
ADD binpackage.tar /usr/local/bin 
LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ 
       org.hyperledger.fabric.chaincode.id.version="1.0" \ 
      org.hyperledger.fabric.chaincode.type="GOLANG" \ 
      org.hyperledger.fabric.version="1.0.0" \ 
      org.hyperledger.fabric.base.version="0.3.1" 
ENV CORE_CHAINCODE_BUILDLEVEL=1.0.0 
ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 
COPY peer.crt /etc/hyperledger/fabric/peer.crt 
2017-08-29 21:14:12.297 UTC [util] DockerBuild -> DEBU 3fe Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.0 
2017-08-29 21:14:48.907 UTC [dockercontroller] deployImage -> DEBU 3ff Created image: dev-peer0.org1.example.com-mycc-1.0 
2017-08-29 21:14:48.908 UTC [dockercontroller] Start -> DEBU 400 start-recreated image successfully 
2017-08-29 21:14:48.908 UTC [dockercontroller] createContainer -> DEBU 401 Create container: dev-peer0.org1.example.com-mycc-1.0

接下來的日誌就是各種初始化,驗證,寫賬本之類的。總之完畢後,我們回到Ubuntu終端,使用docker ps可以看到有新的容器正在執行:

CONTAINER ID        IMAGE                                 COMMAND                  CREATED              STATUS              PORTS                                                                       NAMES
07791d4a99b7        dev-peer0.org1.example.com-mycc-1.0   "chaincode -peer.a..."   About a minute ago   Up About a minute                                                                               dev-peer0.org1.example.com-mycc-1.0
6f98f57714b5        hyperledger/fabric-tools              "/bin/bash"              About an hour ago    Up About an hour                                                                                cli
6e7b3fd0e803        hyperledger/fabric-peer               "peer node start"        About an hour ago    Up About an hour    0.0.0.0:10051->7051/tcp, 0.0.0.0:10052->7052/tcp, 0.0.0.0:10053->7053/tcp   peer1.org2.example.com
9e67abfb982f        hyperledger/fabric-orderer            "orderer"                About an hour ago    Up About an hour    0.0.0.0:7050->7050/tcp                                                      orderer.example.com
908d7fe2a4c7        hyperledger/fabric-peer               "peer node start"        About an hour ago    Up About an hour    0.0.0.0:7051-7053->7051-7053/tcp                                            peer0.org1.example.com
6bb187ac10ec        hyperledger/fabric-peer               "peer node start"        About an hour ago    Up About an hour    0.0.0.0:9051->7051/tcp, 0.0.0.0:9052->7052/tcp, 0.0.0.0:9053->7053/tcp      peer0.org2.example.com
150baa520ed0        hyperledger/fabric-peer               "peer node start"        About an hour ago    Up About an hour    0.0.0.0:8051->7051/tcp, 0.0.0.0:8052->7052/tcp, 0.0.0.0:8053->7053/tcp      peer1.org1.example.com

5.3在一個Peer上查詢併發起交易

現在鏈上程式碼的例項也有了,並且在例項化的時候指定了a賬戶100,b賬戶200,我們可以試著呼叫ChainCode的查詢程式碼,驗證一下,在cli容器內執行:

peer chaincode query -C mychannel -n mycc -c '{"Args":["query","a"]}'

返回結果:Query Result: 100

接下來我們可以試著把a賬戶的10元轉給b。對應的程式碼:

peer chaincode invoke -o orderer.example.com:7050  --tls true --cafile $ORDERER_CA -C mychannel -n mycc -c '{"Args":["invoke","a","b","10"]}'

5.4在另一個節點上查詢交易

前面的操作都是在org1下面做的,那麼處於同一個區塊鏈(同一個Channel下)的org2,是否會看org1的更改呢?我們試著給peer0.org2安裝鏈上程式碼:

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 
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

peer chaincode install -n mycc -v 1.0 -p github.com/hyperledger/fabric/examples/chaincode/go/chaincode_example02

由於mycc已經在前面org1的時候例項化了,也就是說對應的區塊已經生成了,所以在org2不能再次初始化。我們直接執行查詢命令:

peer chaincode query -C mychannel -n mycc -c '{"Args":["query","a"]}'

這個時候我們發現執行該命令後要等很久(我這裡花了40秒)才返回結果:

Query Result: 90

這是因為peer0.org2也需要生成Docker映象,建立對應的容器,才能通過容器返回結果。我們回到Ubuntu終端,執行docker ps,可以看到又多了一個容器:

CONTAINER ID        IMAGE                                 COMMAND                  CREATED             STATUS              PORTS                                                                       NAMES
3e37aba50189        dev-peer0.org2.example.com-mycc-1.0   "chaincode -peer.a..."   2 minutes ago       Up 2 minutes                                                                                    dev-peer0.org2.example.com-mycc-1.0
07791d4a99b7        dev-peer0.org1.example.com-mycc-1.0   "chaincode -peer.a..."   21 minutes ago      Up 21 minutes                                                                                   dev-peer0.org1.example.com-mycc-1.0
6f98f57714b5        hyperledger/fabric-tools              "/bin/bash"              About an hour ago   Up About an hour                                                                                cli
6e7b3fd0e803        hyperledger/fabric-peer               "peer node start"        About an hour ago   Up About an hour    0.0.0.0:10051->7051/tcp, 0.0.0.0:10052->7052/tcp, 0.0.0.0:10053->7053/tcp   peer1.org2.example.com
9e67abfb982f        hyperledger/fabric-orderer            "orderer"                About an hour ago   Up About an hour    0.0.0.0:7050->7050/tcp                                                      orderer.example.com
908d7fe2a4c7        hyperledger/fabric-peer               "peer node start"        About an hour ago   Up About an hour    0.0.0.0:7051-7053->7051-7053/tcp                                            peer0.org1.example.com
6bb187ac10ec        hyperledger/fabric-peer               "peer node start"        About an hour ago   Up About an hour    0.0.0.0:9051->7051/tcp, 0.0.0.0:9052->7052/tcp, 0.0.0.0:9053->7053/tcp      peer0.org2.example.com
150baa520ed0        hyperledger/fabric-peer               "peer node start"        About an hour ago   Up About an hour    0.0.0.0:8051->7051/tcp, 0.0.0.0:8052->7052/tcp, 0.0.0.0:8053->7053/tcp      peer1.org1.example.com

總結

通過以上的分解,希望大家對Fabric環境的建立有了更深入的理解。我這裡的示例仍然是官方的示例,並沒有什麼太新的東西。只要把這每一步搞清楚,那麼接下來我們在生產環境建立更多的Org,建立大量的Channel,執行各種ChainCode都是如出一轍。

最後,大家如果想進一步探討Fabric或者使用中遇到什麼問題可以加入QQ群【494085548】大家一起討論。

相關文章