搭建Fabric网络
Posted 术业有专攻
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建Fabric网络相关的知识,希望对你有一定的参考价值。
Fabric V1.1.0已经发布了,这里准备一篇文章来介绍Fabric V1.1.0 网络怎么搭建。
安装cURL
https://curl.haxx.se/download.html
安装Docker和Docker-Compose
docker下载地址:https://download.docker.com/linux/ubuntu/dists/xenial/pool/stable/amd64/
安装好之后,需要一系列的操作来使docker命令不必sudo就可执行。
- 1.创建docker组:sudo groupadd docker
- 2.将当前用户加入docker组:sudo gpasswd -a ${USER} docker
- 3.重启dokcer服务:sudo service docker restart
-
4.刷新docker成员:newgrp - docker
Docker-Compose下载地址:https://github.com/docker/compose/releases
使Docker-Compose可运行
sudo chmod +x /usr/local/bin/docker-compose
安装GO
安装Node和NPM
wget https://nodejs.org/download/release/v8.9.0/node-v8.9.0-linux-x64.tar.gz
npm install npm@5.6.0 -g
为GO和node设置环境变量 sudo gedit ~/.bashrc
安装Python
sudo apt-get install python
以上是关于搭建Fabric网络的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu 18.04 搭建hyperledge-fabric 2.x网络和fabric-explorer
Hyperledger Fabric 环境搭建及Fabric 测试网络使用(区块链联盟链)