Reputation: 483
We have created an AWS EC2 instance in Asia Pacific (Mumbai) region on Shared Hardware rental type. We are trying to start an instance after shut down and we are getting pop up error stating instances insufficient capacity message on screen. On white papers, it is mentioned like this, Try to launch new EC2 instance but as we have basic plan, it is not allowing us to create new instance on another zone.
How to resolve this issue?
Upvotes: 23
Views: 43754
Reputation: 77
This is usually caused by AWS not having enough available On-Demand capacity to complete your request.
Tip : To avoid insufficient capacity errors on critical machines, consider using On-Demand Capacity Reservations[3].
To use an On-Demand Capacity Reservation, do the following :
1. Create the Capacity Reservation[4] in an Availability Zone.
2. Launch critical instances into your Capacity Reservation[5].
Reference : [1] https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/troubleshooting-launch.html#troubleshooting-launch-capacity
[2] https://aws.amazon.com/premiumsupport/knowledge-center/move-ec2-instance/
[3] https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-capacity-reservations.html
Upvotes: 2
Reputation: 181
Below are a few options available
Upvotes: 2
Reputation: 19
If you are new to AWS, there's usually a limit for how many instances can you launch or start even if you are currently running none. Try to request for a limit increase for the instance you want to launch in the support center and the insufficient capacity error will disappear
Upvotes: 1
Reputation: 3349
According to the documentation, getting an InsufficientInstanceCapacity
error when launching or restarting an instance means that Amazon does not have enough capacity to serve your request. There are a few options:
You can read more here.
Upvotes: 33