Tagged Questions
3
votes
1answer
515 views
How do I create an EC2 image from a running instance using boto?
I'm trying to create a simple python backup script for my EC2 instances. This script's purpose is to create daily/weekly snapshots of the current machine (see this question on ServerFault). I'm using ...
2
votes
2answers
60 views
Process for telling when a new ec2 host can be connected to
I've been using fabric and boto to start up new ec2 hosts for some temporary processing but I've always had trouble knowing when I can connect to the host. The problem is that I can ask ec2 when ...
2
votes
2answers
1k views
Using Boto to find to which device and EBS Volume is mounted
How do I find to which device and EBS Volume is mounted with Python Boto (v2.0)
boto.ec2.Volume
https://github.com/boto/boto/blob/master/boto/ec2/volume.py
has some interesting properies
e.g. ...
1
vote
1answer
48 views
autoscaling with boto
I'm trying to configure autoscaling with boto using scaling policies and metric alarms rather than triggers now that they are being deprecated. I have successfully created a launch configuration and a ...
1
vote
1answer
43 views
Amazon EC2 Boto: Filter out registered AMI
Let say I have 20 registered AMI. Is there a way to filter out only registered AMI using boto API command line?
E.g.
get_all_volumes()
get_all_images()
get_all_instances()
get_all_snapshots(), etc
...
1
vote
1answer
84 views
Boto script freezing when trying to deploy and configure EC2 instances
I'm using boto in Python to automate some of my EC2 workflow.
The issue is very strange - the script appears to freeze on an assignment of a simple variable, but it is continuing in the background. ...
1
vote
1answer
198 views
Boto EC2: Create an instance with tags
Is there a way with the boto python API to specify tags when creating an instance? I'm trying to avoid having to create an instance, fetch it and then add tags. It would be much easier to have the ...
1
vote
2answers
57 views
Amazon Web Service: Different between Images and Instances
What is the different between starting an AWS Image and Instances?
Example:
I do notice when I am running AWS image using boto, I can only stop the Image while running AWS instance using boto, I can ...
1
vote
1answer
352 views
Issues trying to SSH into a fresh EC2 instance with Paramiko
I'm working on a script that spins up a fresh EC2 instance with boto and uses the Paramiko SSH client to execute remote commands on the instance. For whatever reason, the Paramiko client is unabled to ...
1
vote
0answers
150 views
boto ElasticMapReduce throttling and rate limiting
I've run into rate limting from Amazon EMR a few times via boto API with the following:
boto.exception.EmrResponseError: EmrResponseError: 400 Bad Request
<ErrorResponse ...
1
vote
2answers
418 views
Disabling unidentified host confirmation when connecting to Amazon EC2 instances using SSH
I am writing a script using boto and Python to automatically launch an Amazon EC2 instance and interact with it using SSH. Everything works fine except that every time I establish the connection, SSH ...
0
votes
1answer
40 views
amazon ec2 boto returns null instances
i am using the boto python module for polling amazon ec2 instances, however it returns null values,
i can retrieve and list images using conn.get_all_images
import sys
from boto.ec2.connection ...
0
votes
0answers
48 views
What is the most efficient way of using boto with EC2 for processing on server and fetching results back?
I am toying with EC2 and here is my scenario :
One time : Created an EC2 instance with the necessary key pair.
Daily :
fire up an EC2 instance.
send a file of IDs to EC2 micro-instance from local ...
0
votes
1answer
47 views
Python-Boto: Check the Array Position Availability
I have try to get a specific list of AMI and store it in the array list.
usubuntuamilist = {}
for i, image in enumerate(conn.get_all_images()):
if ...
0
votes
1answer
90 views
Run Boto with EC2 in Python with importing errors
With the Access Key & Secret Key located at my home directory, when I run the following in the command line:
from boto.ec2.connection import EC2Connection
conn = EC2Connection()
The console ...
0
votes
1answer
90 views
boto ec2 connect to region is not working in a EC2 instance in Amazon VPC
ec2 = boto.ec2.connect_to_region(regionName)
gets hung in a instance in VPC.
boto ec2 connect to region is not working in a EC2 instance in Amazon VPC but the same thing works outside Amazon VPC.
...
0
votes
1answer
138 views
How to delete an AMI using boto?
(cross posted to boto-users)
Given an image ID, how can I delete it using boto?
0
votes
1answer
442 views
boto: EC2 instance get_attribute results in AttributeError: 'EC2Connection' object has no attribute 'describe_attribute'
What steps will reproduce the problem?
1.attempt to get a running EBS-backed instance's kernel attribute with instance.get_attribute('kernel')
>>> import boto.ec2
>>> regions = ...
0
votes
2answers
235 views
Amazon Autoscaling trigger not working, how do I debug it?
I'm trying to use autoscaling to create new EC2 instances whenever average CPU load on existing instances goes high. Here's the situation:
I'm setting up autoscaling using this boto script (with ...
0
votes
2answers
208 views
How to copy a file via the browser to Amazon S3 using Python (and boto)?
Creating a file (key) into Amazon S3 using Python (and boto) is not a problem.
With this code, I can connect to a bucket and create a key with a specific content:
bucket_instance = ...