您好,登录后才能下订单哦!
这篇文章将为大家详细讲解有关HyperLedger如何使用Ansible进行Fabric多机部署,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
在192.168.88.10、192.168.88.11、192.168.88.12上部署一个有两个组织三个Peer组成的联盟。
联盟的二级域名为: example.com。
组织一的域名为: member1.example.com
组织二的域名为: member2.example.com
组织一中部署了一个Orderer和两个Peer,域名和IP分别为:
orderer0.member1.example.com 192.168.88.10 peer0.member1.example.com 192.168.88.10 peer1.member1.example.com 192.168.88.11
组织二没有部署Orderer参与共识,只部署一个Peer:
peer0.member2.example.com 192.168.88.12
共识算法是solo,如果要切换为其它共识算法,例如kafka,需要另外部署kafka,并修改配置文件。
下载Ansible脚本:
git clone https://github.com/introclass/hyperledger-fabric-ansible.git cd hyperledger-fabric-ansible
0 将要部署到目标环境中的二进制文件复制到output/example.com/bin/目录中
mkdir -p output/example.com/ cd output/example.com/ wget https://nexus.hyperledger.org/content/repositories/releases/org/hyperledger/fabric/hyperledger-fabric/linux-amd64-1.1.0/hyperledger-fabric-linux-amd64-1.1.0.tar.gz wget https://nexus.hyperledger.org/content/repositories/releases/org/hyperledger/fabric/hyperledger-fabric/linux-amd64-1.1.0/hyperledger-fabric-linux-amd64-1.1.0.tar.gz.md5 tar -xvf hyperledger-fabric-linux-amd64-1.1.0.tar.gz
1 在inventories/example.com中创建配置文件,以及ansible需要的hosts文件:
configtx.yaml crypto-config.yaml hosts
2 准备在运行ansible的机器使用fabric命令:
注意事项1:
prepare.sh
会使用hyperledger fabric的命令,需要把在本地运行的fabric命令放到output/bin
目录中。
例如,我是在mac上执行ansible的,下载的是darwin版本的fabric:
mkdir -p output/bin cd output/bin wget https://nexus.hyperledger.org/content/repositories/releases/org/hyperledger/fabric/hyperledger-fabric/darwin-amd64-1.1.0/hyperledger-fabric-darwin-amd64-1.1.0.tar.gz wget https://nexus.hyperledger.org/content/repositories/releases/org/hyperledger/fabric/hyperledger-fabric/darwin-amd64-1.1.0/hyperledger-fabric-darwin-amd64-1.1.0.tar.gz.md5 tar -xvf hyperledger-fabric-darwin-amd64-1.1.0.tar.gz
3 运行perpare.sh生成证书,以及创世块(可以根据需要修改脚本):
./prepare.sh example
注意事项2:
每个部署环境分别在output和inventories中有一个自己的目录,要增加新部署环境除了在output和inventories中准备目录和文件,您还可能需要根据自己的需要在prepare.sh中添加为新的环境生成证书和其它文件的命令。
1 初始化目标机器
export ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook -k -i inventories/example.com/hosts -u root deploy_prepare.yml
2 检测证书设置是否成功
ansible -i inventories/example.com/hosts -u root all -m command -a "pwd"
3 如果域名没有绑定IP,修改每台机器的/etc/hosts,(会替换整个文件):
ansible -i inventories/example.com/hosts -u root all -m copy -a "src=./inventories/example.com/etc_hosts dest=/etc/hosts"
4 部署节点
ansible-playbook -i inventories/example.com/hosts -u root deploy_nodes.yml
5 部署客户端
ansible-playbook -i inventories/example.com/hosts -u root deploy_cli.yml
1 进入member1的管理员目录,对peer0.member1.example.com进行操作:
cd /opt/app/fabric/cli/user/member1.example.com/Admin-peer0.member1.example.com/ //创建channel,channel只需要创建一次 ./0_create_channel.sh //加入channel ./1_join_channel.sh //设置锚点Peer: ./2_set_anchor_peer.sh
2 进入member1的管理员目录,对peer1.member1.example.com进行操作:
cd /opt/app/fabric/cli/user/member1.example.com/Admin-peer1.member1.example.com ./1_join_channel.sh
3 进入member2的管理员目录,对peer0.member1.example.com进行操作:
cd /opt/app/fabric/cli/user/member2.example.com/Admin-peer0.member2.example.com //加入channel ./1_join_channel.sh //设置锚点Peer: ./2_set_anchor_peer.sh
1 进入member1的管理员目录,对peer0.member1.example.com进行操作:
cd /opt/app/fabric/cli/user/member1.example.com/Admin-peer0.member1.example.com/ //先获取合约代码,可能会比较慢,拉取代码比较耗时 go get github.com/lijiaocn/fabric-chaincode-example/demo //安装合约 ./3_install_chaincode.sh //查看已经安装的合约 ./peer.sh chaincode list --installed //合约实例化,只需要实例化一次 ./4_instantiate_chaincode.sh
2 在其它Peer上部署合约
//peer1.member1.example.com //先获取合约代码,可能会比较慢,拉取代码比较耗时 go get github.com/lijiaocn/fabric-chaincode-example/demo cd /opt/app/fabric/cli/user/member1.example.com/Admin-peer1.member1.example.com/ ./3_install_chaincode.sh //peer0.member2.example.com //先获取合约代码,可能会比较慢,拉取代码比较耗时 go get github.com/lijiaocn/fabric-chaincode-example/demo cd /opt/app/fabric/cli/user/member2.example.com/Admin-peer0.member2.example.com/ ./3_install_chaincode.sh
同一个合约,只需要在任意一个Peer上实例化一次。
3 调用合约,写数据
./6_invoke_chaincode.sh
4 调用合约,查数据
./5_query_chaincode.sh
1 启动链:
ansible-playbook -i inventories/example.com/hosts -u root playbooks/manage_start.yml
2 停止链:
ansible-playbook -i inventories/example.com/hosts -u root playbooks/manage_stop.yml
3 清空链上所有数据:
ansible-playbook -i inventories/example.com/hosts -u root playbooks/manage_rebuild.yml
4 销毁链:
ansible-playbook -i inventories/example.com/hosts -u root playbooks/manage_destroy.yml
关于“HyperLedger如何使用Ansible进行Fabric多机部署”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。