您好,登錄后才能下訂單哦!
小編給大家分享一下Hyperledger Fabric如何構建第一個網絡,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
操作系統
建議使用Ubuntu或者MacOS,不建議使用windows
下載最新版本的 curl 工具安裝(如果尚未安裝)
Docker和Docker Compose
Docker版本17.06.2-ce或更高版本。
Docker Compose版本1.14.0或更高版本。
以下命令檢查已安裝的Docker的版本:
docker --version
以下命令檢查已安裝的Docker Compose的版本:
docker-compose --version
Go
Hyperledger Fabric對其許多組件使用Go編程語言1.11.x
環境變量設置 GOPATH 為:
export GOPATH=$HOME/go
將 GOPATH/bin 添加到 PATH 中:
export PATH = $ PATH:$ GOPATH / bin
Node.js和NPM
利用針對Node.js的Hyperledger Fabric SDK開發Hyperledger Fabric的應用程序,則需要安裝版本8.9.x的Node.js。
安裝Node.js也會安裝NPM,但建議命令升級該工具:
npm install npm@5.6.0 -g
Git
下載安裝 Git
搭建第一個網絡
1.克隆 hyperledger/fabric-samples
git clone https://github.com/hyperledger/fabric-samples.git
2.切換到 fabric-samples 文件夾下
cd fabric-samples
3.指定版本的Hyperledger Fabric平臺特定二進制文件和配置文件分別安裝到fabric-samples 存儲庫的根目錄中bin文件夾和config文件夾,和下載指定版本的Hyperledger Fabric docker鏡像
./scripts/bootstrap.sh [version] [ca version] [thirdparty_version]
4.構建第一個網絡
(1) 使用 first-network 樣本
cd first-network
(2) byfn.sh 腳本的幫助文本
Usage: byfn.sh <mode> [-c <channel name>] [-t <timeout>] [-d <delay>] [-f <docker-compose-file>] [-s <dbtype>] [-l <language>] [-i <imagetag>] [-v] <mode> - one of 'up', 'down', 'restart', 'generate' or 'upgrade' - 'up' - bring up the network with docker-compose up - 'down' - clear the network with docker-compose down - 'restart' - restart the network - 'generate' - generate required certificates and genesis block - 'upgrade' - upgrade the network from v1.0.x to v1.1 -c <channel name> - channel name to use (defaults to "mychannel") -t <timeout> - CLI timeout duration in seconds (defaults to 10) -d <delay> - delay duration in seconds (defaults to 3) -f <docker-compose-file> - specify which docker-compose file use (defaults to docker-compose-cli.yaml) -s <dbtype> - the database backend to use: goleveldb (default) or couchdb -l <language> - the chaincode language: golang (default), node or java -i <imagetag> - the tag to be used to launch the network (defaults to "latest") -v - verbose mode byfn.sh -h (print this message)Typically, one would first generate the required certificates andgenesis block, then bring up the network. e.g.: byfn.sh generate -c mychannel byfn.sh up -c mychannel -s couchdb byfn.sh up -c mychannel -s couchdb -i 1.1.0-alpha byfn.sh up -l node byfn.sh down -c mychannel byfn.sh upgrade -c mychannelTaking all defaults: byfn.sh generate byfn.sh up byfn.sh down
(3) 生成msp證書密鑰文件,簡要說明,回車繼續
./byfn.sh generate
日志輸出
(4) 啟動網絡
./byfn.sh up
日志會看到從 start
到此,第一個聯盟鏈搭建成功,是自動化腳本構建的,接著下一章會分析細節。
(5) 終止網絡,終止容器,刪除加密材料和四個工件,并刪除鏈上代碼鏡像
./byfn.sh down
看完了這篇文章,相信你對“Hyperledger Fabric如何構建第一個網絡”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。