Amazon Machine Image for Amazon's EC2 web service

learn more… | top users | synonyms

0
votes
3answers
656 views

Asterisk/AMI: Originate Calls

I'm looking to write a script that will dial a number and obtain the status of the call like, Ring No Answer, Answered, Busy, Congestion and then disconnect and return the value as stdout. I've tried ...
2
votes
2answers
122 views

Is there a list of AMIs for every popular linux distribution and version

I need to test a piece of software against every linux distribution/version. I'm going to use amazon AWS Is there a list of AMIs somewhere that I can just copy paste into my script to automate this ...
0
votes
2answers
32 views

After creating an AMI, how do I launch it using the same configuration?

I set up my instance to my liking, created an image (AMI) from it, and stopped the instance. I now want to change the AMI for that instance to the new AMI, and re-launch the instance. How do I do ...
3
votes
1answer
92 views

Aggregated AMI metrics return “INSUFFICIENT_DATA”

I'm trying to set up my own autoscaling system on AWS and I've set up alarms for any instance spawned with a specific AMI ID. When I check the the metrics which are only monitoring one server, they ...
2
votes
1answer
220 views

How do I install byobu in ec2 ami

I know it was possible usint a package manager since i did it once a time ago. But now if I try sudo yum install byobu it just fails ... Failed to set locale, defaulting to C Loaded ...
0
votes
1answer
168 views

Apache Whirr on EC2 with custom AMI

I am trying to launch a cluster of custom AMI images. AMI image is just Ubunutu 12.04 server image from Amazon free tier selection with Java installed (I actually want to create AMI with numpy and ...
0
votes
1answer
119 views

How to handle updating an AWS EC2 instances AMI?

on my aws setup I have load balances pointing to several app servers which all use a common API. The app servers all have the same NGINX cong (nginx.conf) which for various reasons I now need to ...
0
votes
1answer
95 views

asterisk originate drops calls

I am using asterisk(1.6.2.13) to mass originate to specified numbers that are come from mysql database using perl and AMI. if I send all calls (simultaneous) to asterisk, it will drop half of them ...
0
votes
1answer
55 views

Install Linux AMI 2012.03 packages

I've Amazon AMI 2013, I need to install some software (like mod_security,zip,GD,etc...) which is listed in this link https://aws.amazon.com/amazon-linux-ami/2012.03-packages/ What is the ssh commend ...
0
votes
1answer
75 views

set aws autoscale alarm for a percentage increase of CPU

I have an AWS autoscale group. Is it possible to set an alarm for a percentage increase of CPU? For example, if CPU increases 40% over 1min, trigger the alarm? Thus if CPU is at 0% at 12:51 and 40% at ...
0
votes
1answer
539 views

Not ablet to bind address through webrick on rails on Ubuntu AMI

I have got rails setup on linux (ubuntu)ami. I am trying to bind the ip used to access linux ami but am not able to bind it." Cannot assign requested address - bind(2) (Errno::EADDRNOTAVAIL) " Full ...
0
votes
1answer
595 views

How to auto start apache and mysql when system boots in Amazon linux AMI

How to auto start apache and mysql when system boots in "Amazon linux AMI" .
2
votes
0answers
390 views

My Xen VM on the EC2, choosing right AKI

I'm trying to move my Xen domU (guest VM) to the EC2. On my machine I have a Xen (dom0 and several domUs). However, when I boot a guest VM, I use a kernel image from dom0 (in the .cfg file lines ...
1
vote
0answers
120 views

Instance Store AMI from a customized EBS-backed instance

Sorry if this supposed to be easily understood from the docs, but I didn't - if I spin up an EC2 instance using one of the easily available Ubuntu EBS-boot AMI's, install a bunch of stuff and move ...
1
vote
0answers
67 views

Saving changes to an EC2 instance without having to register an AMI each time?

I wanted to make sure there is no better way to do what I am doing without having to register a new AMI each time I make a change to my instance. My current workflow is the following: Create an AMI ...
1
vote
0answers
104 views

It is possible to use euca-register on AWS with a snapshot instead of an image location (manifest.xml)?

I have a snapshot that I would like to register as an AMI on Amazon Web Services. I can register this snapshot easily enough using ec2-tools' ec2-register but I would prefer to use euca2ools. I know ...
0
votes
0answers
30 views

fopen fails to read a file although open_basedir is not set

fopen is failing with failed to open stream: Permission denied in /var/www/html/ even though safe mode is turned off and open_basedir is set to none. The folder that PHP is trying to read a file from ...
0
votes
0answers
50 views

How do I declare enviroment variables without .bashrc and export command in Amazon EC2 Ami?

I want to know how I declare an enviroment variable without the next methods 1 .bashrc 2 export CATALINA_HOME=/whatever/whatever I know that JAVA_HOME is declared withouts those methods. I am ...
0
votes
0answers
126 views

Start Amazon AMI on EC2 with bash script as user data

We automatically install oracle JAVA jdk 7u9, Apache tomcat7 and axis2 with a use of a bash script. Everything works, except the startup.sh command doesn't keep tomcat7 running. So, the bash script ...
0
votes
0answers
42 views

EC2 AMI arch mismatch

I am trying to roll a custom AMI in AWS EC2. I can create and register the AMI image but when I try to launch the server I get told the architecture does not match the image. I also have a reduced ...
0
votes
0answers
27 views

Amazon AMI for PHP and Javascript development

My school is having us use Amazon Cloud for development this semester versus a typical web-server that is preset up. They basically want us to understand more aspects of running and maintaining the ...
0
votes
0answers
127 views

script to Snapshot mysql db on Amazon EBS

I did search for the relevant questions and still couldnt find any answers in the forum. I am working on a simple script to automate snapshotting mysql db on amazon ebs. My instance is hosted on ...
0
votes
0answers
29 views

Is it possible to configure multiple SQL Server Instances on an Amazon SQL Server AMI?

Would it be possible to configure multiple SQL Server Instances on an Amazon SQL Server 2008 AMI? So basically one server instance would be running multiple SQL Server instances. How would this work ...
0
votes
0answers
81 views

Upgrade my instance from t1.micro to large/ also upgrade the EBS size

I am about to upgrade my instance and my EBS volume both. (from t1.micro->large, from 8gb->1024gb). I know I can create an image from the instance/volume and launch it to get my instance upgraded. ...
0
votes
0answers
257 views

AWS autoscale alarms for individual instances

I have an AWS autoscale group. I would like to set an alarm for each individual instance which says that if that instance's CPU has been under 20% for 10min it should be terminated. Is this possible ...