fabric1.4的安装
Posted 想学习安全的小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fabric1.4的安装相关的知识,希望对你有一定的参考价值。
更新内核
- 命令:yum -y update
配置go语言环境
- 命令:
vim /etc/profile
- 添加:注意,fabric源码必须处于opt目录下
export GOPATH=/opt/gopath
export GOROOT=/root/go
export PATH=$GOROOT/bin:$PATH
- 让配置文件生效,命令:
source /etc/profile
- 验证go安装成功,命令:
go version
安装git
命令:yum install git
安装curl
命令:yum install curl
安装docker
- 安装docker,命令:
yum install -y yum-utils device-mapper-persistent-data lvm2
- 设置稳定的仓库:
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
- 安装 Docker Engine-Community:
yum -y install docker-ce docker-ce-cli containerd.io
- 验证docker是否成功:
docker --version
- 启动docker:
systemctl start docker
- 设置为开机自启:
systemctl enable docker
安装Docker Compose
- 安装:
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
- 将可执行权限应用于二进制文件:
chmod +x /usr/local/bin/docker-compose
- 验证:
docker-compose --version
拉取fabric源码
- 建立文件目录:
$ mkdir -p gopaht/src/github.com/hyperledger
- 在hyperledger目录下拉去fabric源码:
git clone -b release-1.4 https://gitee.com/name-difficult/fabric.git
- 将bin二进制文件设置进环境变量中:
vim /etc/profile
export PATH=$PATH:/root/gopath/src/github.com/hyperledger/fabric/scripts/fabric-samples/bin
export PATH=$PATH:/root/gopath/src/github.com/hyperledger/fabric/scripts/fabric-samples/config
- 让配置文件生效,命令:
source /etc/profile
以上是关于fabric1.4的安装的主要内容,如果未能解决你的问题,请参考以下文章
复现区块链Fabric1.4项目记录安装配置centos8虚拟机
Fabric1.4 在自己项目中安装区块链浏览器blockchain-explorer
Fabric1.4 在自己项目中安装区块链浏览器blockchain-explorer