欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

hyperledger fabric环境搭建

程序员文章站 2022-07-14 16:01:57
...

操作系统:centos 7.6

  1. 安装前需要的模块

逐渐一运行以下指令,看缺了什么,然后安装对应的模块

git version
curl --version
docker --version
docker-compose --version
go version
node -v
python --version
  1. 根据官方文档操作
    https://hyperledger-fabric.readthedocs.io/en/latest/install.html
#curl -sSL http://bit.ly/2ysbOFE | bash -s -- <fabric> <fabric-ca> <thirdparty>
curl -sSL http://bit.ly/2ysbOFE | bash -s -- 1.2.0 1.2.0 0.4.10
#国内访问不了这个地址可以改用以下命令
https://raw.githubusercontent.com/hyperledger/fabric/master/scripts/bootstrap.sh | bash -s 1.2.0 1.2.0 0.4.10
  1. 配置环境变量
#假设安装在了$HOME目录
echo 'export PATH=$PATH:$HOME/fabric-samples/bin' >> ~/.bash_profile
. ~/.bash_profile
  1. 运行测试脚本
cd fabric-samples/first-network
./byfn.sh generate
./byfn.sh up
./byfn.sh down

没有报错就是安装成功了

相关标签: hyperledger fabric