How to Create Cloud9 Environment on Amazon Web Service(AWS).

AWS Cloud9 is a cloud-based integrated development environment (IDE) that lets you write, run, and debug your code with just a browser. It includes a code editor, debugger, and terminal. Cloud9 comes prepackaged with essential tools for popular programming languages, including JavaScript, Python, PHP, and more, so you don’t need to install files or configure your development machine to start new projects.

AWS Cloud9 gives you the flexibility to run your development environment on a managed Amazon EC2 instance or any existing Linux server that supports SSH. This means that you can write, run, and debug applications with just a browser, without needing to install or maintain a local IDE.

 

  • Login to aws portal.
  • Click on Services.

 

Fig 1

 

  • Under Developer Tools select Cloud9.

 

Fig 2

 

  • Click on Create Environment.

 

Fig. 3

 

  • Provide environment name.
  • Click on Next step.

 

Fig. 4

 

  • Select Environment type.
  • Select Instance Type.

 

Fig. 6

 

  • Select Platform:Amazon linux 1 ,2 or ubuntu 18.04
  • Create or select existing VPC.
  • Create or select existing subnet.
  • Click on Add tag.

 

Fig. 6

 

  • Provide key name & value for Cloud9 environment.
  • Click on Next Step.

 

Fig. 8

 

 

  • Review all configurations.

 

Fig. 8

 

  • Click on Create environment.

 

Fig 10

 

  • Environment created successfully.

 

Fig 9

 

  • After sometime Cloud9 Environment is ready.

 

Fig 11

 

Create Cloud9 environment using Shell

To create an AWS Cloud9 EC2 development environment

aws cloud9 create-environment-ec2 –name example-env –description “environment.” –instance-type t2.micro –subnet-id subnet-id –automatic-stop-time-minutes 60 –owner-arn arn:aws:iam::123:user/User

 

 

Leave a Reply