您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)Hyperledger Fabric如何安裝和運行的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
預先安裝
注意:以下全部安裝和配置都在 Ubuntu16.04.5-server-amd64 上進行
cURL
checck on Ubuntu16.04.5 (input command "curl --help")
Docker
version (17.06.2-ce or greater) (input command "docker --version")
How to install Docker on Ubuntu16.04.5 (See this)
Docker Compose
version (1.14.0 or greater) (input command "docker-compose --version")
How to install Docker Compose on Ubuntu16.04.5 (See this)
Go
version (1.11.x) (input command "go version")
GOPATH (export GOPATH=~/golang/gopath)
PATH (export PATH=$PATH:$GOPATH/bin)
下載源碼
源碼中含有樣例,下載完成后切換到v1.3.0版本的源碼
go get github.com/hyperledger/fabric cd $GOPATH/src/github.com/hyperledger/fabric git checkout -b v1.3.0
下載鏡像
docker pull hyperledger/fabric-tools:amd64-1.3.0 docker pull hyperledger/fabric-peer:amd64-1.3.0 docker pull hyperledger/fabric-orderer:amd64-1.3.0 docker pull hyperledger/fabric-ca:amd64-1.3.0 docker pull hyperledger/fabric-couchdb:amd64-0.4.14 docker pull hyperledger/fabric-kafka:amd64-0.4.14 docker pull hyperledger/fabric-zookeeper:amd64-0.4.14 docker pull hyperledger/fabric-baseos:amd64-0.4.14為了方便 docker-compose 的配置,將所有的鏡像 tag 都改為 latest
docker tag hyperledger/fabric-tools:amd64-1.3.0 hyperledger/fabric-tools:latest docker tag hyperledger/fabric-peer:amd64-1.3.0 hyperledger/fabric-peer:latest docker tag hyperledger/fabric-orderer:amd64-1.3.0 hyperledger/fabric-orderer:latest docker tag hyperledger/fabric-ca:amd64-1.3.0 hyperledger/fabric-ca:latest docker tag hyperledger/fabric-couchdb:amd64-0.4.14 hyperledger/fabric-couchdb:latest docker tag hyperledger/fabric-kafka:amd64-0.4.14 hyperledger/fabric-kafka:latest docker tag hyperledger/fabric-zookeeper:amd64-0.4.14 hyperledger/fabric-zookeeper:latest docker tag hyperledger/fabric-baseos:amd64-0.4.14 hyperledger/fabric-baseos:latest這些鏡像都比較大,下載過程請確保網(wǎng)絡(luò)環(huán)境穩(wěn)定速率快,否則容易中斷失敗
運行樣例
cd $GOPATH/src/github.com/hyperledger/fabric/examples/e2e_cli # 這里的斜杠"/"需要轉(zhuǎn)義 sed -i "s/\/opt\/gopath/\/home\/nealguo\/golang\/gopath/g" *.* base/*.* script/*.*啟動過程中會用到很多配置文件和腳本,比如 docker-compose-cli.yaml、base/docker-compose-base.yaml、scripts/script.sh,這些配置文件和腳本中很多路徑以 /opt/gopath 開頭(即默認 $GOPATH 是 /opt/gopath),
如果 $GOPATH 是其他路徑,需要修改這些配置文件和腳本,比如這里用 /home/nealguo/golang/gopath 替換 /opt/gopath(sed 命令參看這里)
cd $GOPATH/src/github.com/hyperledger/fabric/examples/e2e_cli bash network_setup.sh up這里運行樣例 e2e_cli,關(guān)閉時可以使用命令 “bash network_setup.sh down”
感謝各位的閱讀!關(guān)于“Hyperledger Fabric如何安裝和運行”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。