BLCN532 Lab 1 Set Up Your Development Environment
BLCN532 Lab 1 Set Up Your Development Environment
BLCN532 Lab 1 Set Up Your Development Environment
Introduction
This course introduces students to blockchain development for enterprise environments. Before you can
develop software applications, you need to ensue your development environment is in place. That
means you’ll need all the tools and infrastructure installed and configured to support enterprise
blockchain software development projects.
In this lab you’ll set up your own Hyperledger Fabric development environment and install the course
software from the textbook. When you finish this lab, you’ll have a working development environment
and will be ready to start running and modifying blockchain applications.
The instructions in your textbook are for Mac and Linux computers. However, there is no guarantee that
your installation of MacOS or Linux is completely compatible with the environment in which the
commands from the textbook work properly. For that reason, I STRONGLY SUGGEST that you acquire an
Ubuntu 16.04 Virtual Machine (VM) for your labs. Using an Ubuntu 16.04 VM will make the labs far
easier to complete.
The instructions in this course’s labs assume that your computer runs the Windows operating system. If
you run MacOS or Linux, you can get Vagrant and VirtualBox for those operating systems and follow the
gist of the “Initial setup for Windows computers”.
Lab Deliverables:
To complete this lab, you must create a Lab Report file and submit the file in iLearn. The Lab Report file
must be a Microsoft Word format (.docx), and have the filename with the following format:
BLCN532_SECTION_STUDENTID_LASTNAME_FIRSTNAME_Lab01.docx
To get started, create a Microsoft Word document (.docx) with the correct filename for this lab. You’ll
be asked to enter text and paste screenshots into the lab report file.
NOTE: All screenshots MUST be readable. Use the Ubuntu Screen Capture utility (see the lab video.)
Make sure that you label each screenshot (i.e. Step 2.1.3) and provide screenshots in order. For
commands that produce lots of output, I only want to see the last full screen when the command
finishes. Provide FULL screenshots, NOT cropped images.
SECTION 1: Initial setup for Windows computers (Chapter 3)
Oracle Virtualbox is an open source virtualization environment that allows you to run multiple virtual
machines and containers on a single personal computer. Virtualbox is free and it is easy to install.
In your favorite web browser, navigate to: https://www.virtualbox.org/ and click the “Download
Virtualbox” button. Click the “Windows hosts” link to download the main installation executable. You
should also click the “All supported platforms” under the “Extension Pack” heading to download extra
software support for devices.
After you download the two files, double click each one to run the install procedure.
Vagrant is a free virtual environment management utility. It makes the process of starting, stopping, and
managing virtual machines easier. In your web browser, navigate to https://www.vagrantup.com/ then
click the “Download” button, and click the version of the Windows executable you’d like to install. (Most
of you should select the “64-bit” version.)
Once you download the install program, double-click the file you just downloaded to install Vagrant.
If you want more information on Vagrant and tips on getting the most out of the software, navigate to:
https://www.sitepoint.com/getting-started-vagrant-windows/ .
After installing all the pre-requisite pieces, you need to set up your Vagrant project. A Vagrant project
defines your virtual machine environment and helps you organize your collection of VMs into a group
that is easy to manage.
We’ll use the Windows PowerShell as our Windows command prompt environment. PowerShell is a very
powerful command line interface that is available on all Windows computers.
To launch PowerShell, click the Windows key, type PowerShell, then click the Windows PowerShell
menu entry. The figure below shows a portion of the Windows PowerShell command prompt window.
PowerShell uses your user’s home directory as its starting directory. In my case, C:\Users\micha is my
home directory. For the rest of the lab, I’ll refer to this a %HOME%. Your %HOME% will be different.
Follow these steps ONLY if you already have a previous Vagrant project you want to remove: (Assume
the project you want to remove is located in the %HOME%\vagrant\Hyperledger directory.)
If you DO NOT have an existing Vagrant project that you need to remove, skip to section 1.3.2.
Note the id of the listed VM(s). You’ll use this id in the next command, in place of xxxxxxx.
Launch PowerShell and enter the following commands: (Don’t type ‘PS %HOME%>’, that’s just the
PowerShell prompt. Just type the characters in bold.)
Make sure that you enter the line above as ONE LINE at the PowerShell prompt
Once you have an operating Linux VM, you can start to install the Hyperledger Fabric pre-requisites. In
this section you’ll install all the software and configuration pieces necessary to run the class enterprise
blockchain application in Hyperledger Fabric.
You type all the following commands in your Linux VM (at the Terminal command prompt.)
Don’t type the ‘$’ character. That is the prompt character of a regular user to remind you that this is a
command you should enter in Linux. When you see a ‘#’ character, that indicates you are in an elevated
privilege shell. And the ‘>’ character indicates you’re in PowerShell. Pay attention to the prompt
characters - they give you valuable information about your current context.
Make sure that you enter the line above as ONE LINE in Linux
1. $ curl -O https://hyperledger.github.io/composer/latest/prereqs-ubuntu.sh
2. $ chmod u+x prereqs-ubuntu.sh
3. $ ./prereqs-ubuntu.sh
4. $ date
5. Create a screenshot of the results of steps 1 - 4 and paste it into your Lab Report File.
>>> Logout (use the gear icon in the upper right corner) and log back in before continuing.
The next step is to install the GO programming language. You’ll use GO to write and modify source code
files for the class blockchain application.
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
6. Save your file and exit nano
7. $ source .profile
8. $ go version
9. $ date
10. Create a screenshot of the results of steps 1 - 9 and paste it into your Lab Report File.
Step 2.2: Install source code and set up business network
In this step you download and install the class application source code and set up the business network.
You type all the following commands in your Linux VM (at the command prompt.)
4. $ cd $GOPATH/src
5. $ git clone https://github.com/YOUR_GIT_ID/trade-finance-logistics.git
6. $ cd $GOPATH/src
7. $ mkdir -p github.com/hyperledger
8. $ cd github.com/hyperledger
9. $ git clone https://github.com/hyperledger/fabric.git -b release-1.1
10. $ cd fabric
11. EDIT FILES *****
a. $ nano Makefile
b. Find the line starts with CHAINTOOL_RELEASE (hint: use CTRL W to search)
c. Change the line you just found to this: CHAINTOOL_RELEASE=1.1.3
d. Find the line that starts with CHAINTOOL_URL (hint: use CRTL W to search)
e. Change the line you just found to this: CHAINTOOL_URL ?=
https://hyperledger.jfrog.io/hyperledger/fabric-maven/org/hyperledger/fabric-
chaintool/$(CHAINTOOL_RELEASE)/fabric-chaintool-$(CHAINTOOL_RELEASE).jar
NOTE: The line above should be on a SINGLE LONG LINE (don’t break up the line into multiple lines)
NOTE: The line above should be on a SINGLE LONG LINE (don’t break up the line into multiple lines)
1. $ cd $GOPATH/src/trade-finance-logistics/network
2. $ nano ~/.profile
export PATH=$PATH:$GOPATH/bin:$GOPATH/src/github.com/hyperledger/fabric/build/bin:
$GOPATH/src/github.com/hyperledger/fabric/build/docker/bin
1. $ cd $GOPATH/src/trade-finance-logistics/network
2. Execute the follow commands OR run the trade.sh script (AFTER step 9)
3. $ mkdir -p channel-artifacts
4. $ configtxgen -profile FourOrgsTradeOrdererGenesis -outputBlock ./channel-
artifacts/genesis.block
5. $ configtxgen -profile FourOrgsTradeChannel -outputCreateChannelTx ./channel-
artifacts/channel.tx -channelID tradechannel
6. $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channel-
artifacts/ExporterOrgMSPanchors.tx -channelID tradechannel -asOrg ExporterOrgMSP
7. $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channel-
artifacts/ImporterOrgMSPanchors.tx -channelID tradechannel -asOrg ImporterOrgMSP
8. $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channel-
artifacts/CarrierOrgMSPanchors.tx -channelID tradechannel -asOrg CarrierOrgMSP
9. $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channel-
artifacts/RegulatorOrgMSPanchors.tx -channelID tradechannel -asOrg RegulatorOrgMSP
OR (Instead of typing the commands above, the author provides a script to do it all)
1. $ ./trade.sh generate -c tradechannel
Troubleshooting help:
If you encounter problems with your blockchain network in this lab or future labs, the ./trade.sh
script may help you resolve them. If you are getting errors when trying to launch or interact with
your network, try these commands at the Ubuntu command prompt:
o ./trade.sh down # If your network is up and running
o ./trade.sh clean
o ./trade.sh generate -c tradechannel
o ./trade.sh up
There are two ways to launch the sample trade network, using the docker-compose command directly,
or by using the author-supplied trade.sh shell script. We’ll use the shell script in most of our activities.
1. $ cd $GOPATH/src/trade-finance-logistics/network
2. $ ./trade.sh up
3. $ date
4. Create a screenshot of the results of steps 1 - 3 and paste it into your Lab Report File.
The last step in this lab is to verify that your business network is up and running.
1. Open a new terminal window in your Vagrant Hyperledger VM. Click “Search your computer”
(upper left corner icon), then type terminal, then click the Terminal icon.)
2. Enter the following command:
3. $ docker ps -a
4. $ date
5. Create a screenshot of the results of steps 2 - 4 and paste it into your Lab Report File.
6. The first column in the previous output is the “container-ID”. Find the container-ID for the
orderer process, and use it for the following command: (Don’t type the “<” or “>” characters)
7. $ docker logs <container-ID>
8. Create a screenshot of the results of step 7 and paste that screenshot into your Lab Report File.
Section 3: Wrapping up
Once you have your network up and running, the only step to complete is to learn how to properly
shutdown your business network.
You should have 8 screenshots in your Lab Report File. Save your file and submit it in iLearn as a file
attachment for the Lab 1 assignment.