- Newest
- Most votes
- Most comments
Based on the new force terminate capability for EC2 instances, you should be able to resolve this situation. Amazon EC2 now supports force terminating instances that are stuck in the shutting-down state, which is exactly the scenario you're experiencing.
When you use force terminate, the instance will first attempt a graceful shutdown process. If that's unsuccessful within the timeout period, it proceeds with a forced shutdown. This allows you to recover resources associated with stuck instances, such as vCPU quotas or Elastic IP addresses, without waiting for AWS intervention.
You can force terminate your instance through either the EC2 console or the AWS CLI. For the CLI, you would use the TerminateInstances command with the appropriate force parameter. Note that a forced shutdown may not flush file system caches and metadata or run shutdown scripts before termination, but given that your instance has been stuck for over 72 hours, this is likely your best path forward.
This functionality is available in all commercial regions, including eu-west-2 where your instance is located. The force terminate feature was specifically designed to give customers greater flexibility in managing EC2 instances without requiring AWS support intervention for these types of stuck instance scenarios.
If force terminate doesn't resolve the issue after a reasonable time (typically a few minutes, though it can take up to 10 minutes), you may need to attempt it again or ultimately contact AWS support if the problem persists.
Sources
Amazon EC2 now supports force terminate for EC2 instances - AWS
Force stop stuck Lightsail instances - Amazon Lightsail
Relevant content
- asked 4 years ago
- asked 5 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a month ago

I ran this command multiple times but the instance remains stuck in
shutting-down:Each time the response shows both
CurrentStateandPreviousStateasshutting-down(code 32), meaning it was already in that state before the command ran — so the command has no effect:The instance has been stuck in this state for 72+ hours. Is there anything else I can try, or does this require AWS support intervention?