Hyperledger Fabric当前最新版本为1.2, 自行参考官方安装文档
https://hyperledger-fabric.readthedocs.io/en/release-1.2/prereqs.html
http://www.javatree.cn/news/e10340bfc0644215a7886bb629f84adc
以Centos7安装为例, 简单说明注意事项。
1. 安装或更新curl
yum install curl
yum update curl
保证尽量新的版本, 后面步骤安装脚本使用curl下载文件
2.docker安装
(1) Docker CE安装参考官方文档
https://docs.docker.com/install/linux/docker-ce/centos/
如果官方的源采访有限制则可使用阿里的源
yum install yum-utils device-mapper-persistent-data lvm2
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum install docker-ce
官方镜像下载会比较慢,最好修改为国内的镜像地址。 docker存储镜像的目录最好不放系统盘下,最好指向数据盘.
新建或编辑/etc/docker/daemon.json
{
"data-root": "/mnt/sda3/docker-root",
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}
启动docker服务
systemctl start docker
(2) Docker Compose
参考官方文档