在 Win7 环境使用 hyperledger/fabric source code 模拟 IBM Bluemix Blockchain Service 作者:陳兆麟 Email:chenlin2@ms9.hinet.net 当美国联准会(Fed)主席叶伦力挺区块链 (blockchain) 后,区块链如野火燎原般风靡了整个地球,它将改变人类传统生活习惯;唯一 IBM bluemix所提供的 bloclcahain service 最近几乎塞到爆,常出现用量超出负荷的讯息,幸好IBM佛心提供了4 万行 hyperledger/fabric source code如果没有这些 source code, 区块链的应用将会被口袋深的大厂把持;目前企业只要有支持 Docker 云端平台都可以自行开发区块链的应用系统,有兴趣的企业可私讯联系共同开发。以下范例是以 hyperledger/fabric source code在local machine 仿真 IBM Bluemix bloclcahain service 的功能,也就是不必登录至 IBM bluemix 就可以执行IBM 所提供的範例blockchain marbles。 開發環境:Win7 (64 bit, RAM >=8G) , vagrant , blockchain, docker,golang 1. win7 安装 cygwin (https://cygwin.com/install.html)
将安装之执行文件目录 (C:\cygwin64\bin) 设定在控制台系统 path 变量
win7 安装 virtualbox (VirtualBox-5.1.6-110634-Win.exe) (https://www.virtualbox.org/)
win7 安装 Git (https://git-scm.com/downloads)
登入github 建立账号 (https://github.com/ 纪录 username 及 password)
fork hyperledger/fabric浏览器入以下网址:
进入Win7 command shell:
$mkdir -p d:\GoProjects\src\github.com\hyperledger $cd d:\GoProjects\src\github.com\hyperledger $git clone https://github.com/xxxxxxx/fabric $cd d:\GoProjects\src\github.com\hyperledger\fabric\devenv修正 Vagrantfile (D:\GoProjects\src\github.com\hyperledger\fabric\devenv)
新增 :
config.vm.network “forwarded_port”, guest: 22, host: 22
config.vm.network “forwarded_port”, guest: 3000, host: 3000
(username: vagrant,password:vagrant)
hyperledger挂载点 ($GOPATH/src/github.com/hyperledger/fabric)
已挂载 win 7 local machine目录(d:\GoProjects\src\github.com\hyperledger\fabric)
可用 touch 指令新增 empty file (例如 touch abcd) 测试是否挂载成功
将 marbles 范例安装至local machine (https://github.com/IBM-Blockchain/marbles)
cdGOPATH/src/github.com/hyperledger/fabric $ git clone https://github.com/IBM-Blockchain/marbles.git $ cd marbles将附录 3之app.js, mycreds.json覆盖原先档案,因不使用bluemix blockchain
service,就必须使用hyperledger chaincode,先将marbles-chaincode fork至
我的repository, 再clone至hyperledger VM,修改以下档案:
(*shim.ChaincodeStub 修正 shim.ChaincodeStubInterface)
https://github.com/chenlin2/marbles-chaincode/tree/master/hyperledger/part1/part1_chaincode.go
https://github.com/chenlin2/marbles-chaincode/tree/master/hyperledger/part2/part2_chaincode.go
修改后再回存至我的 github repository。以下 app.js 所含zip_url,git_url
已修正为 chenlin2/marbles-chaincode (不可使用系统默认值,user可尝试使用
自己的github repository)