Automount EBS volume in Amazon EC2 Windows Instance - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:44:39Z http://stackoverflow.com/feeds/question/328965 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/328965/automount-ebs-volume-in-amazon-ec2-windows-instance 1 Automount EBS volume in Amazon EC2 Windows Instance defeated 2008-11-30T15:42:07Z 2009-11-23T21:40:43Z <p>Does anyone know how to auto-mount an <a href="http://aws.amazon.com/ebs/" rel="nofollow">Elastic Block Storage</a> (EBS) volume when starting a Windows 2003 instance in Amazon's <a href="http://aws.amazon.com/ec2/" rel="nofollow">Elastic Compute Cloud</a> (EC2)?</p> http://stackoverflow.com/questions/328965/automount-ebs-volume-in-amazon-ec2-windows-instance/422575#422575 3 Answer by Chris Markle for Automount EBS volume in Amazon EC2 Windows Instance Chris Markle 2009-01-07T23:12:23Z 2009-01-08T01:27:51Z <p>I found the following Ruby code at <a href="http://www.ioncannon.net/system-administration/199/automounting-amazon-ebs-volumes-on-ec2-instances/" rel="nofollow">http://www.ioncannon.net/system-administration/199/automounting-amazon-ebs-volumes-on-ec2-instances/</a> courtesy of Carson McDonald. It's for Linux/Unix but maybe you can re-swizzle this for Ruby on Windows 2003 or have it serve as a model for doing it in some other scripting language.</p> <p>Note that you could pass things into your image as user data such as the ECS EBS volume ID and the device name (e.g., /dev/sdh in the following example or whatever it would be in Windows for your case). You can access the user data from the instance itself as meta-data as is roughly done below to get the instance-id. More specifically, you'd access <a href="http://169.254.169.254/1.0/user-data" rel="nofollow">http://169.254.169.254/1.0/user-data</a> to get to the user-data.</p> <pre><code>#!/usr/bin/ruby require 'rubygems' require 'right_aws' require 'net/http' url = 'http://169.254.169.254/2008-02-01/meta-data/instance-id' instance_id = Net::HTTP.get_response(URI.parse(url)).body AMAZON_PUBLIC_KEY='your public key' AMAZON_PRIVATE_KEY='your private key' EC2_LOG_VOL='the volume id' ec2 = RightAws::Ec2.new(AMAZON_PUBLIC_KEY, AMAZON_PRIVATE_KEY) vol = ec2.attach_volume(EC2_LOG_VOL, instance_id, '/dev/sdh') puts vol # It can take a few seconds for the volume to become ready. # This is just to make sure it is ready before mounting it. sleep 20 system('mount /dev/sdh /mymountpoint') </code></pre> http://stackoverflow.com/questions/328965/automount-ebs-volume-in-amazon-ec2-windows-instance/1400623#1400623 2 Answer by jsw for Automount EBS volume in Amazon EC2 Windows Instance jsw 2009-09-09T16:10:42Z 2009-09-09T16:10:42Z <p>Setup:</p> <ul> <li>Make sure the EBS volume is formatted and labeled (in the example I used the label PDRIVE). </li> <li>Setup a drive mapping using Ec2ConfigServiceSettings.exe</li> <li>Install Java on the instance</li> <li>Install the EC2 API command line tools</li> <li>Install a copy of your cert and private key</li> <li>Install a copy of curl.exe (open source tool)</li> </ul> <p>Note: I had to replace the protocol in a URL below because I'm a new user and not allowed to post more than one URL. You'll need to edit the URL to pull the data from the EC2 metadata.</p> <pre><code>REM @echo off REM setlocal ENABLEDELAYEDEXPANSION C:\WINDOWS\system32\eventcreate /l SYSTEM /t information /id 100 /so AttachEbsBoot /d "Starting attach-ebs-boot.cmd" REM local variables REM Make sure you include the directory with curl.exe and the EC2 command line tools in the path set path=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\Utils;C:\ebin\ec2\bin set JAVA_HOME=c:\java set EC2_HOME=c:\ebin\ec2 set EC2_CERT=&lt;your_cert&gt; set EC2_PRIVATE_KEY=&lt;your_private_key&gt; REM Please note: you should use the Ec2 Config Serive Settings application to ensure REM that your EBS volume is mapped to a particular drive letter. REM REM edit as needed set EBS_DRIVE=P: set EBS_DEVICE=xvdp REM Test to see if the drive is already attached. If it is then we're done. if exist %EBS_DRIVE%\nul (goto done) REM get the EBS volume ID from the user data and the instance ID from the meta-data for /f "delims=" %%a in ('curl http://169.254.169.254/latest/user-data') do (set EBS_VOLUME=%%a) for /f "delims=" %%b in ('curl xxxx://169.254.169.254/latest/meta-data/instance-id') do (set INSTANCE_ID=%%b) C:\WINDOWS\system32\eventcreate /l SYSTEM /t information /id 102 /so AttachEbsBoot /d "Volume == %EBS_VOLUME%" C:\WINDOWS\system32\eventcreate /l SYSTEM /t information /id 103 /so AttachEbsBoot /d "Instance == %INSTANCE_ID%" REM attach the volume REM REM Use a series of set command to build the command line SET COMMAND_LINE=%EBS_VOLUME% SET COMMAND_LINE=%COMMAND_LINE% -i SET COMMAND_LINE=%COMMAND_LINE% %INSTANCE_ID% SET COMMAND_LINE=%COMMAND_LINE% -d SET COMMAND_LINE=%COMMAND_LINE% %EBS_DEVICE% C:\WINDOWS\system32\eventcreate /l SYSTEM /t information /id 104 /so AttachEbsBoot /d "calling ec2attvole %COMMAND_LINE%" call ec2attvol.cmd %COMMAND_LINE% :DONE C:\WINDOWS\system32\eventcreate /l SYSTEM /t information /id 101 /so AttachEbsBoot /d "Exiting attach-ebs-boot.cmd" REM Events logged in the System event log REM source === AttachEbsBoot REM REM Event 100 - Script start REM Event 101 - Script end REM Event 102 - Volume ID REM Event 103 - Instance ID REM Event 104 - Command line for ec2attvol </code></pre> http://stackoverflow.com/questions/328965/automount-ebs-volume-in-amazon-ec2-windows-instance/1786189#1786189 0 Answer by Nadin Merali for Automount EBS volume in Amazon EC2 Windows Instance Nadin Merali 2009-11-23T21:40:43Z 2009-11-23T21:40:43Z <p>Where would you place these scripts so that they are loaded as soon as possible in windows?</p>