Troubleshoot stopping your instance - Amazon Elastic Compute Cloud
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Troubleshoot stopping your instance

If you have stopped your Amazon EBS-backed instance and it appears stuck in the stopping state, there may be an issue with the underlying host computer.

There is no cost for instance usage while an instance is in the stopping state or in any other state except running. You are only charged for instance usage when an instance is in the running state.

Force stop the instance

Force the instance to stop using either the console or the Amazon CLI.

Note

You can force an instance to stop using the console only while the instance is in the stopping state. You can force an instance to stop using the Amazon CLI while the instance is in any state, except shutting-down and terminated.

Console
To force stop the instance using the console
  1. Open the Amazon EC2 console at https://console.amazonaws.cn/ec2/.

  2. In the navigation pane, choose Instances and select the stuck instance.

  3. Choose Instance state, Force stop instance, Stop.

    Note that Force stop instance is only available in the console if your instance is in the stopping state. If your instance is in another state (except shutting-down and terminated) you can use the Amazon CLI to force stop your instance.

Amazon CLI
To force stop the instance using the Amazon CLI

Use the stop-instances command and the --force option as follows:

aws ec2 stop-instances --instance-ids i-0123ab456c789d01e --force

If, after 10 minutes, the instance has not stopped, post a request for help on Amazon Web Services re:Post. To help expedite a resolution, include the instance ID, and describe the steps that you've already taken. Alternatively, if you have a support plan, create a technical support case in the Support Center.

Create a replacement instance

To attempt to resolve the problem while you are waiting for assistance from Amazon Web Services re:Post or the Support Center, create a replacement instance. Create an AMI of the stuck instance, and launch a new instance using the new AMI.

Important

Creating a replacement instance is recommended if it's registering system status checks only, as instance status checks will result in the AMI copying over an exact replica of the broken OS. Once you've confirmed the status message, create the AMI and launch a new instance using the new AMI.

Console
To create a replacement instance using the console
  1. Open the Amazon EC2 console at https://console.amazonaws.cn/ec2/.

  2. In the navigation pane, choose Instances and select the stuck instance.

  3. Choose Actions, Image and templates, Create image.

  4. On the Create image page, do the following:

    1. Enter a name and description for the AMI.

    2. Choose No reboot.

    3. Choose Create image.

    For more information, see Create a Linux AMI from an instance.

  5. Launch a new instance from the AMI and verify that the new instance is working.

  6. Select the stuck instance, and choose Actions, Instance state, Terminate instance. If the instance also gets stuck terminating, Amazon EC2 automatically forces it to terminate within a few hours.

Amazon CLI
To create a replacement instance using the CLI
  1. Create an AMI from the stuck instance using the create-image (Amazon CLI) command and the --no-reboot option as follows:.

    aws ec2 create-image --instance-id i-0123ab456c789d01e --name "AMI" --description "AMI for replacement instance" --no-reboot
  2. Launch a new instance from the AMI using the run-instances (Amazon CLI) command as follows:

    aws ec2 run-instances --image-id ami-1a2b3c4d --count 1 --instance-type c3.large --key-name MyKeyPair --security-groups MySecurityGroup
  3. Verify that the new instance is working.

  4. Terminate the stuck instance using the terminate-instances (Amazon CLI) command as follows:

    aws ec2 terminate-instances --instance-ids i-1234567890abcdef0

If you are unable to create an AMI from the instance as described in the previous procedure, you can set up a replacement instance as follows:

(Alternate) To create a replacement instance using the console
  1. Select the instance and choose Description, Block devices. Select each volume and make note of its volume ID. Be sure to note which volume is the root volume.

  2. In the navigation pane, choose Volumes. Select each volume for the instance, and choose Actions, Create Snapshot.

  3. In the navigation pane, choose Snapshots. Select the snapshot that you just created, and choose Actions, Create Volume.

  4. Launch an instance with the same operating system as the stuck instance. Note the volume ID and device name of its root volume.

  5. In the navigation pane, choose Instances, select the instance that you just launched, and choose Instance state, Stop instance.

  6. In the navigation pane, choose Volumes, select the root volume of the stopped instance, and choose Actions, Detach Volume.

  7. Select the root volume that you created from the stuck instance, choose Actions, Attach Volume, and attach it to the new instance as its root volume (using the device name that you made note of). Attach any additional non-root volumes to the instance.

  8. In the navigation pane, choose Instances and select the replacement instance. Choose Instance state, Start instance. Verify that the instance is working.

  9. Select the stuck instance, choose Instance state, Terminate instance. If the instance also gets stuck terminating, Amazon EC2 automatically forces it to terminate within a few hours.