hypeledger fabric 多机部署笔记 (1)
环境准备
Ubuntu系统 版本Xenial 16.04(LTS)
1.Install cURL
tar -xzvf curl-7.61.0.tar.gz cd curl-7.61.0/./configure make sudo make install curl --version
2.Docker and Docker Compose
https://docs.docker.com/install/linux/docker-ce/ubuntu/#extra-steps-for-aufs
https://blog.youkuaiyun.com/diligent_lee/article/details/79098302
设置存储库
$ sudo apt-get remove docker docker-engine docker.io
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
```通过搜索指纹的最后8个字符,验证您现在拥有带指纹的密钥 。
$ sudo apt-key fingerprint 0EBFCD88
$ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
安装docker CE
$ sudo apt-get update
$ sudo ap