In this recipe, we will learn how to install Hyperledger Burrow on the AWS Cloud platform.
Installing Hyperledger Burrow on AWS
Getting ready
To install and run the recipes in this chapter, you need an EC2 instance on AWS with the following configuration:
- Operating system: Ubuntu 16.04.5 LTS
- AWS EC2 instance type: m4.2xlarge or t2.mroc
How to do it...
Execute the following steps to install Hyperledger Burrow:
- Install Go version 1.10 or higher. The following commands can be used to install Go on an EC2 instance:
sudo apt update
sudo apt install golang-go
If you have...