Saturday, December 17, 2016

Detaching an Amazon EBS Volume from an Instance_AWS



Detaching an Amazon EBS Volume from an Instance
You can detach an Amazon EBS volume from an instance explicitly or by terminating the instance. However, if the instance is running, you must first unmount the volume from the instance.;
If an EBS volume is the root device of an instance, you must stop the instance before you can detach the volume.
When a volume with an AWS Marketplace product code is detached from an instance, the product code is no longer associated with the instance.
Important
After you detach a volume, you are still charged for volume storage as long as the storage amount exceeds the limit of the AWS Free Tier. You must delete a volume to avoid incurring further charges. For more information, see Deleting an Amazon EBS Volume.
This example unmounts the volume and then explicitly detaches it from the instance. This is useful when you want to terminate an instance or attach a volume to a different instance. To verify that the volume is no longer attached to the instance, see Viewing Volume Information.
Note that you can reattach a volume that you detached (without unmounting it), but it might not get the same mount point and the data on the volume might be out of sync if there were writes to the volume in progress when it was detached.
To detach an EBS volume using the console
  1. Use the following command to unmount the /dev/sdh device.
[ec2-user ~]$ umount -d /dev/sdh
  1. Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/.
  2. In the navigation pane, choose Volumes.
  3. Select a volume and choose ActionsDetach Volume.
  4. In the confirmation dialog box, choose Yes, Detach.
To detach an EBS volume from an instance using the command line
You can use one of the following commands. For more information about these command line interfaces, see Accessing Amazon EC2.
Troubleshooting
This section deals with common problems encountered when detaching volumes, and how to resolve them.
Note
To guard against the possibility of data loss, take a snapshot of your volume before attempting to unmount it. Forced detachment of a stuck volume can cause damage to the file system or the data it contains or an inability to attach a new volume using the same device name, unless you reboot the instance.
  • If you encounter problems while detaching a volume through the Amazon EC2 console, it may be helpful to use the describe-volumes CLI command to diagnose the issue. For more information, see describe-volumes>.
  • If your volume stays in the detachingstate, you can force the detachment by choosingForce Detach. Use this option only as a last resort to detach a volume from a failed instance, or if you are detaching a volume with the intention of deleting it. The instance doesn't get an opportunity to flush file system caches or file system metadata. If you use this option, you must perform file system check and repair procedures.
  • If you've tried to force the volume to detach multiple times over several minutes and it stays in the detaching state, you can post a request for help to the Amazon EC2 forum. To help expedite a resolution, include the volume ID and describe the steps that you've already taken.
  • When you attempt to detach a volume that is still mounted, the volume can become stuck in the busy state while it is trying to detach. The following output from describe-volumes shows an example of this condition:
·         [ec2-user ~]$ aws ec2 describe-volumes --region us-west-2 --volume-ids vol-1234abcd
·         {
·             "Volumes": [
·                 {
·                     "AvailabilityZone": "us-west-2b",
·                     "Attachments": [
·                         {
·                             "AttachTime": "2016-07-21T23:44:52.000Z",
·                             "InstanceId": "i-fedc9876",
·                             "VolumeId": "vol-1234abcd",
·                             "State": "busy",
·                             "DeleteOnTermination": false,
·                             "Device": "/dev/sdf"
·                         }
....
When you encounter this state, detachment can be delayed indefinitely until you unmount the volume, force detachment, reboot the instance, or all three.

1 comment:

  1. Wow... Thanks for sharing useful script and all details of AWS EBS snapshot. I really found this blog very helpful.

    ReplyDelete