Setup the Amazon EC2 API Tools
note: this assumes you already have Java installed with the JAVA_HOME environment variable set.
Download and unzip
$ cd $ wget http://s3.amazonaws.com/ec2-downloads/ec2-api-tools.zip $ unzip ec2-api-tools.zip
Set EC2 environment variables (assuming bash shell)
add the following to your ~/.bash_profile
export EC2_HOME=$HOME/ec2-api-tools-X.X-XXXXX export PATH=$PATH:$EC2_HOME/bin export EC2_PRIVATE_KEY=$HOME/.ec2/pk-XXXXXXXXXXXXXXX.pem export EC2_CERT=$HOME/.ec2/cert-XXXXXXXXXXXXXXX.pem
the EC2_HOME variable will point to the directory created where ec2-api-tools.zip was unzipped, replace the X's with the version numbers.
the EC2_PRIVATE_KEY and EC2_CERT are the paths to your AWS X.509 certificate files, again replace the X's to match your filenames.
if you have not generated/uploaded these files in your AWS account you can do so in the Security Credentials section of your AWS account. save the private key as well as the certificate file to the ~/.ec2 directory.
Reload your bash profile
$ source ~/.bash_profile
Start the base AMI
this can be done a number of ways but using Elasticfox or the AWS Management Console i feel are the easiest.
both will have you create a key pair in order to connect to the instance, remember where you saved this, you will need it later on.
Customize the AMI
connect to the running instance and customize it how you like.
Upload your private/public key to the instance
upload your X.509 private key and certificate files to the running instance's /mnt directory.
(local machine)
$ scp -i /path/to/ec2/ssh_key $EC2_PRIVATE_KEY $EC2_CERT root@public.dns.address:/mnt
the /path/to/ec2/ssh_key is the path to the ssh key you used to connect to the running EC2 instance (not the X.509 private key).
also replace public.dns.address with the public dns address of the running EC2 instance.
Bundle the Customized AMI
after you are done customizing the instance create a bundled Amazon Machine Image (AMI)
(EC2 instance)
$ ec2-bundle-vol -d /mnt -k /mnt/pk-XXXXXXXXXXXXXXX.pem -c /mnt/cert-XXXXXXXXXXXXXXX.pem -u <aws_account_id> -s 10240 -r i386
note: if you installed your own version of ruby and this command is failing, the easiest workaround is to just change into the /usr/lib/site_ruby directory and run the command.
your AWS account ID can be found in the Security Credentials section of your AWS account.
| param | description |
|---|---|
| -d | the directory to create the bundle in (/mnt is ignored by default when bundling an AMI) |
| -k | your private key (uploaded in the previous step) |
| -c | your certificate file (uploaded in the previous step) |
| -u | your AWS account ID. |
| -s | the size (in MB) of the image file to create. this can be left out if you are not resizing the current AMI |
| -r | the architecture (i386 or x86_64) |
Upload AMI bundle to S3
upload the AMI bundle to your S3 account
(EC2 instance)
$ ec2-upload-bundle -b bucket_name/key -m /mnt/image.manifest.xml -a <access_key_id> -s <secret_access_key>
your Access Key ID as well as yout Secret Access Key can be found in the Security Credentials section of your AWS account.
| param | description |
|---|---|
| -b | the bucket name to upload the bundle to. you can use slashes to upload to a subdirectory (or key as Amazon calls them) |
| -m | the path to the bundle manifest file, this will be /mnt/image.manifest.xml if you did not change the destination directory or prefix in the previous step |
| -a | your aws access key ID |
| -s | your aws secret access key |
Register the AMI
the bundled AMI must be registered with Amazon before it can be used, by default the AMI will only be accessible from your account.
(local machine)
$ ec2-register bucket_name/key/image.manifest.xml
the bucket_name/key/image.manifest.xml is the bucket path on S3 the bundle was uploaded to in the previous step
if successful the AMI ID will be output and you will find it listed as an available AMI.

0 comments:
Post a Comment