In order to set up servers on AWS, perform the following steps:
- Log in to your AWS console and click on Your VPCs.
- In order to create a new one, click on Create VPC and name it Mesos (since we are working on installing Mesos). Provide a IP in CIDR block text. The CIDR block is the range of the IP address that we want to create the subnet of, and then on each subnet we will have own IP address that our instances can use when launched in each subnet. So, we will put 10.0.0.0/16. Keep the IPv6 CIDR block as the default and set Tenancy as Default. Here, default means resources can run on shared hardware. As you are running on shared hardware, Amazon provides complete security for your VPC. Click on Yes, Create:
The ...