MacOS bigSur 搭建fabric2.1环境

一、准备工作

  • 安装docker

阿里云镜像下载:http://mirrors.aliyun.com/docker-toolbox/mac/docker-for-mac/

换源成网易源:

  "registry-mirrors": [
    "https://hub-mirror.c.163.com"
  ]
image

docker info确认:

image
  • 安装nodejs

  • 安装go

去go语言中文网

https://studygolang.com/dl

执行go env查看GOPATH,将其添加到.zshrc或者你当前shell的配置文件中:

image

二、fabric环境搭建

参照

Ubuntu Server搭建Hyperledger Fabric 2.1学习环境

!!! 以下一步看情况,如果下载速度可以就不用换了。

编辑bootstrap.sh文件:

更改hyperledger-fabric-darwin-amd64-2.1.1.tar.gz下载地址

源GitHub下载地址:https://github.com/hyperledger/fabric/releases/download/v2.1.1/hyperledger-fabric-darwin-amd64-2.1.1.tar.gz

更改hyperledger-fabric-ca-darwin-amd64-1.4.7.tar.gz文件下载地址

源GitHub下载地址:https://github.com/hyperledger/fabric-ca/releases/download/v1.4.7/hyperledger-fabric-ca-darwin-amd64-1.4.7.tar.gz

其他需要注意的地方

go代理设置:

go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.io,direct

https://goproxy.cn 好像挂了。。。所以设置这个。

出现错误:

Error: chaincode install failed with status: 500 - failed to invoke backing implementation of 'InstallChaincode': could not build chaincode: docker build failed: docker image inspection failed: Get "http://unix.sock/images/dev-peer0.org1.example.com-fabcar_1-762e0fe3dbeee0f7b08fb6200adeb4a3a20f649a00f168c0b3c2257e53b6e506-5016f400ec9078b1e7c00626e70b0094ec48651ea7f49e14b46a6995345e2431/json": dial unix /host/var/run/docker.sock: connect: no such file or directory
!!!!!!!!!!!!!!! Chaincode installation on peer0.org1 has failed !!!!!!!!!!!!!!!!

此问题是由适用于macOS的Docker Desktop的较新版本引起的。

要解决此问题,请在Docker Desktop首选项中,取消选中该框Use gRPC FUSE for file sharing, 以使用旧版osxfs文件共享,然后单击Apply&Restart 。

image

你可能感兴趣的:(MacOS bigSur 搭建fabric2.1环境)