I want some way of identifying which instance that I'm on when I ssh into a Linux ec2 instance. I would like to be able to uniquely identify the instance from the command-line and correlate this to http://console.aws.amason.com
Any of the following would be helpful:
AMI
Private DNS
Public DNS
Tags
I'm using Ubuntu and Red Hat instances.
I'm assuming you want to do this from the bash shell rather than with the boto python library or similar...
You should be able to query the metadata service on 169.254.169.254.
e.g.
AMI_ID=$(curl http://169.254.169.254/latest/meta-data/ami-id)
You can get a listing of what meta-data is available with:
curl http://169.254.169.254/latest/meta-data/
This is documented at http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html
Note: I am more familiar with openstack's metadata service, but that was modelled on the Amazon EC2 service. The quantity and types of data available are different, but accessing it is the same.
You can use two methods to get the info of an EC2 instance:
Access Instance Metadata and User Data from the EC2 API
From the CLI of your instance use the following URI to retrieve all the instance metadata.
http://169.254.169.254/latest/meta-data/
You will see a list of available categories. If you need the AMI Id make a curl request:
curl http://169.254.169.254/latest/meta-data/ami-id
Use the Instance metadata Query Tool
This is basically a wrapper for the first method, see https://aws.amazon.com/code/1825.
Some instance types come with this tool preinstalled, in others you have to download and install the tool.
Once the tool is present just execute:
ec2metadata
You should see a list of all instance properties, this is pretty handy to use that info programmatically.
If you want to identify the instance when you are logged in into the shell via SSH you can add the instance id to the CLI prompt using the User Data feature of EC2 when launching the instance.
Just add the following script to the user data field when launching the instance:
This script will execute at start time and change the hostname of the instance with the instance id.
You can use either of two methods described above and any of the metadata attributes to identify the instance.
Personally, i just run facter. (Part of puppet)
Maybe something like this?
Simple Command-Line Access to Amazon EC2 and Amazon S3 http://aws.amazon.com/developertools/739