How to Start an EC2 Instance

Login to AWS Management Console and navigate to EC2 dashboard. Search for the instance that you would like to start and right click on the instance. Select ‘Start’ under ‘Instance State’.

On the ‘Start Instances’ window, confirm by choosing ‘Yes, Start’.

This image has an empty alt attribute; its file name is image-12.png
This image has an empty alt attribute; its file name is image-13.png

To start an EC2 Instance from AWS CLI, run the following command where INSTANCEID is the instance id of the EC2 Instance.

aws ec2 start-instances --instance-ids INSTANCEID

Below is the command to start multiple instances using AWS CLI.

aws ec2 start-instances --instance-ids INSTANCEID1 INSTANCEID2 INSTANCEID3

See also  How to copy data from a file in S3 bucket to Redshift tables