Ubuntu下HyperLedger fabric开发环境搭建

转自:https://www.ibm.com/developerworks/community/blogs/8d277a63-4204-4fd3-8cb8-b7cb222cd522/entry/Steps_to_setup_Blockchain_Hyperledger_Fabric_0_6_development_environment_on_Ubuntu?lang=zh

We heard about Blockchain technology and understand its value to business. Here we would want to share our learnings with you all,acquired during setting up a single node Hyperledger blockchain dev environment during a client engagement. This entire installation & configuration takes 120-150 minutes. This blog is co-authored with@Krishna Harshaand@PriyaVasudevan.​



Let’s get started. As you can see from below snapshot,I am using Ubuntu 16.04.1 LTS machine with 8 core processor and 32 GB RAM. Using Putty I am accessing it as superuser.

Make sure network is configured properly and internet is accessible. You can check /etc/hosts and /etc/resolv.conf. Try to ping any web address to make sure everything is alright.

As a next step,you should update Runapt updateto updates the list of available packages and their versions. Upgrade the packages to make sure they are up to date usingapt-get upgrade. If required,update/etc/apt/sources.listusingvi.

Since the Hyperledger Fabric project is a ‘Go’project,you’ll need to install it first. Make sure its version is 1.6 or higher.

apt install golang-go

Once Go is installed. You can create necessary local folder and clone fabric fromgerrit.hyperledger.orgusing below commands -

mkdir -p /opt/gopath/src/github.com/hyperledger

cd /opt/gopath/src/github.com/hyperledger/

git clonehttp://gerrit.hyperledger.org/r/fabric

Now we need to set following environment variables in order to move forward. Alternatively you can write.bash_profilefile instead of setting variables every time.

export PATH=/usr/lib/go-1.6/bin:$PATH

export GOPATH=/opt/gopath/

export GOROOT=/usr/lib/go-1.6/

export PATH=/opt/gopath/src/github.com/hyperledger/fabric/build/bin/:$PATH

You would also need couple of libraries so run below command -

apt-get install -y cpp gccgo "build-essential" libsnappy-dev zlib1g-dev libbz2-dev docker.io curl

Next we’ll install and build RocksDB 4.1 along with its dependencies as we are not using Vagrant based setup.

cd /tmp

git clonehttps://github.com/facebook/rocksdb.git

cd rocksdb

git checkout v4.1

PORTABLE=1 make shared_lib

INSTALL_PATH=/usr/local make install-shared

Also build pip,behave and docker-compose using below commands.

apt install python-pip

pip install --upgrade pip

pip install behave nose docker-compose

pip install -I flask==0.10.1 python-dateutil==2.2 pytz==2014.3 pyyaml==3.10 couchdb==1.0 flask-cors==2.0.1 requests==2.4.3

With this we are ready to build the fabric (validating peer). This is probably most problematic step. If you missed any of the above step,it would not work. Use these commands.

cd $GOPATH/src/github.com/hyperledger/fabric

make peer

At stage-1,you would see your screen like this -

At stage-2,that’s how you screen looks like –

Stage-3

And

Stage-4

Once its successful,you are ready to setup CA server. The Certificate Authority (CA) provides a number of certificate services to users of a blockchain.

make membersrvc

With this installation part is done. Now lets Start node service (validating peer) –

peer node start

Run Certificate Authority (CA) server by starting member services –

membersrvc

Once both servers are started,You can access this blockchain setup for development or testing. You may need to understand which service is running on which port. Run below command to do that –

netstat -lnt

7050 – REST service listeining port

7051 – Peer service listening port

7052 – Used by CLI for callbacks

7053 – Event service on validating node

7054 - Certificate Authority (CA) listening port (Member services)

Once services are up and running. You can use REST API calls from any machine on network.

In the next blog,we’ll configure security,privacy and logging levels for this setup (http://ibm.biz/securebc).We’ll also see how to write,deploy,invoke and query chaincode (http://ibm.biz/chaincode). Thanks.

References:

  1. http://hyperledger-fabric.readthedocs.io/en/latest/dev-setup/devenv/
  2. https://www.ibm.com/blockchain/what-is-blockchain.html
  3. https://www.ibm.com/blockchain/for-business.html
  4. https://github.com/hyperledger/fabric/blob/master/docs/Setup/ca-setup.md
  5. http://hyperledger-fabric.readthedocs.io/en/latest/API/CoreAPI/#rest-api
  6. http://hyperledger-fabric.readthedocs.io/en/latest/dev-setup/build/
  7. https://www.ibm.com/blockchain/garage.html
  8. https://www.ibm.com/blockchain/bluemix.html


其他Hyperledger相关资源整理:

http://8btc.com/thread-41047-1-1.html

相关文章

目录前言一、创建Hadoop用户二、更新apt和安装Vim编辑器三、...
原文连接:https://www.cnblogs.com/yasmi/p/5192694.html ...
电脑重启后,打开VirtualBox,发现一直用的虚拟机莫名的消失...
参见:https://blog.csdn.net/weixin_38883338/article/deta...
Ubuntu 18.04 LTS 已切换到 Netplan 来配置网络接口。Netpla...
介绍每个 Web 服务都可以通过特定的 URL 在 Internet 上访问...