EBS Volume attach to running EC2 Windows instance - amazon-web-services

I am having a scenario where EC2 mount two EBS Volumes and one of them is root. My ELB is setup to size=1 instance actively running. I want to have second EBS volume snapshot to be attached to new EC2 spin-off using AMI. How to do it using CloudWatch Event and Lambda?
EC2 API for volume mount do not specify windows mounts. Any Idea how to support EC2 Windows mounts using Lambda Function or any other scripting technique?
EDITED -
Here is what is expected - I have secondary EBS volume mounted to EC2 Windows. I have taken AMI of this machine and associated with Auto Scaling Group and Launch Configuration. In case of DR, ASG spins off new EC2 instance using defined AMI. It is desired that this new spin off machine to use same secondary EBS volume from snapshot.

Just mount the volume as normal. It is supported for both Linux and Windows.
If you are worried about the Linux-like device name, see Device Naming on Windows Instances - Amazon Elastic Compute Cloud:
Recommended for EBS Volumes: xvd[f-z]

An Amazon Machine Image (AMI) can contain multiple volumes.
I suggest you:
Launch an Amazon EC2 instance with both desired volumes (Root + Volume X:)
Create a new AMI from that instance, specifying both volumes
Create a new Auto Scaling launch configuration using that new AMI
Edit the Auto Scaling group to use the new Launch Configuration

Related

Effect of EC2 config change on EBS-backed Wordpress?

I am deploying Wordpress site using LAMP AMI on EBS-backed EC2. Wordpress database will be stored in EBS.
Amazon keeps on updating base configuration of EC2 for better performance & security.
If I have to upgrade my EC2 then my EBS will get deleted.
How can I ensure that my EC2 gets updated without affecting my EBS?
EBS Snapshot is not of any help as new EC2 already has a EBS attached.
Do I have to always migrate my Wordpress site using backup & do this upgradtion?
Amazon EC2 instances use EBS volumes as their disk volumes. They are populated from an Amazon Machine Image (AMI) when the instance is launched.
When AWS releases updated AMIs, any new instance launched from the AMI will contain the updated disk content. However, existing EC2 instances will not be changed (since they have a copy of the AMI at the time that the instance was launched).
You can also change the Instance Type of an EC2 instance, which gives it different hardware (CPU, Memory). This can be done by stopping the instance, changing the type and starting it again. This will not affect the contents of EBS volumes.
If you wish to keep your instance "current", simply run sudo yum update (Linux) or run the Windows Update utility to update your operating system and associated utilities rather than launching a whole new instance.

Windows EC2 => snapshot => AMI => new EC2 doesn't work

I am very new to AWS. I had a perfectly running Windows Server EC2 on t2.micro. IIS is working perfectly and I can get its HTML using a web browser. I can RDP into it.
I then stopped it, created a snapshot from its only EBS volume.
I then created an AMI from the snapshot.
I then launched the AMI. What is interesting is t2.micro is not available. Only t1.micro and m3.medium onward are available. When I tried to launch, it warns me that port 22 is not turned on so I can't remote into it. The instance status check says "insufficient data". When I clicked the "Connect" button, it asks me to use putty. So it seems to think that the instance is a Linux instance. But I have redone this whole process five times and under no circumstance I ever chose Linux.
If I skip the snapshot, and directly create an AMI from the EC2 instance and launch it, t2.micro is available, and the new instance works.
Why can't I create an AMI from snapshot, if AWS provides such functionality?
Snapshot is a backup of your data.
AMI is snapshot of your system.It contains the bootable information like
the architecture, kernel, block device mappings ,instance type etc. , so that it will have some information prior to instance launch.
It is not possible to create an AMI image of a Windows-based EC2 instance from an EBS snapshot. That process:
EC2 instance -> EBS snapshot -> AMI image -> EC2 instance
only works for Linux instances.
To create a working AMI image from a Windows EC2 instance, you must use the "Create Image" function from the source EC2 instance directly:
Via AWS Management Console: Actions -> Image -> Create Image
Via API: ec2:CreateImage
Via CLI: aws ec2 create-image

Transfer EBS volume data in one VPC to an EFS in another VPC

I am looking to migrate an application from one vpc to another. Currently, the application's ec2 instances utilize a nfs which I created from another ec2 instance and ebs volumes. These application related instances (web and app) as well as the nfs instance reside in one VPC (Let's call it VPC "A").
My question is how would I go about transferring the ebs data from the existing nfs in VPC "A" into an efs in VPC "B"? Additionally, the rate of data transfer is not relevant, so the file system's performance mode is just defined as general purpose. Thanks!
Not sure if this answer was technically possible at the time the above answer was given, but a much easier way to achieve a solution providing that the asker did not to run both applications concurrently (ie. duplicate the data instead of just switch the VPC it was available from).
My company was switching to a new VPC, so I merely wanted to make the data available in the new VPC. Rather than copy it to EBS, unmount, remount, copy to EFS, I switched the mount points as described here:
http://docs.aws.amazon.com/efs/latest/ug/manage-fs-access-change-vpc.html
IMO this is much simpler if you don't need to actually duplicate the data.
For backing up the data, AWS has a workflow outlined:
http://docs.aws.amazon.com/efs/latest/ug/efs-backup.html
It sounds like your requirement is to transfer the contents of an Amazon EBS volume in one VPC to a different VPC. It is unclear whether your NFS server is hosted from EC2+EBS, or whether it is running from Amazon EFS. I'll assume it is EC2+EBS.
A few different options for you (pick one!):
Create an AMI: Create an AMI of the Amazon EC2 instance running the server. Then launch a new instance in VPC B using that AMI.
Move the disk: Turn off the EC2 instance. Detach the EBS volume, the attach it to a different instance running in VPC B. Configure as necessary.
Use an EBS Snapshot: Snapshot the EBS volume that holds the data, create a new EBS volume from the snapshot (in the desired AZ), attach the EBS volume to the EC2 instance in VPC B.
However, if your server is running on Amazon Elastic File System (EFS), then you would need to copy the data to an EBS volume, detach the volume and attach it to an instance in the VPC B, then copy the data from the EBS volume to a new EFS share in VPC B.

Stopping AWS EC2 instance leads to autocreation of another instance of the stopped one

I had to stop my m3.medium EC2 instance from the AWS console to resize it to m3.large. However, after it stopped, it automatically created a new instance.
Any idea why this is happening? It caused some big troubles for me.
Your AutoScaling group with minimum size = 1 spun up a new instance because there were no instances in the 'running' state available to respond to requests, particularly health checks. Your instance was deemed 'unhealthy' and replaced by the ASG.
If your instance storage was ephemeral, I'm afraid it is gone forever unless you recently saved an AMI. If your instance storage was backed by EBS, you can recover it by attaching the EBS volume to a new instance.
In the future, consider configuring your autoscaling group's launch configuration to have everything you need ahead of time, by either bootstrapping the instance or by baking an AMI.
For 'bootstrapping' an instance:
Create a new launch configuration with a standard AMI avaialble from Amazon.
Add user data to the launch configuration to handle installation and configuration of your desired programs.
For 'baking' an AMI:
Install your desired programs and configuration on a new EC2 instance.
Take an image (AMI) of that EC2 instance.
Use that image in your new launch configuration.
Manually working on an instance within an ASG and expecting the instance to persist indefinitely is dangerous, as you've just discovered.
Further Reading:
EC2 Documentation - AutoScaling Health Checks
EC2 Documentation - Amazon Machine Images

Restoring an EBS Volume to get a functional server up

I created a 'functional' simple standalone web-server on an ec2 instance backed by a 20GB EBS Volume. This volume is the root drive for the Linux server and hosts MySql, Apache and Tomcat.
Now, I shut this 1st instance down (didn't kill the EBS Volume) and want to use this Volume to get another web-server up (on a new EC2 instance). Even if I attach this volume as 2nd volume in the new EC2 instance, I don't get the webserver running, for obvious reasons.
Is there a way of making this volume as the primary disk volume so that I can start the webserver and other processes as is without having to set them up again?
Thanks.
You can create a snapshot of the instance and launch a new instance from the snapshot.