active questions tagged aws - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T01:56:06Zhttp://stackoverflow.com/feeds/tag/awshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1926571/how-do-i-deploy-django-on-aws0how do I deploy Django on AWS?sa1252009-12-18T05:59:05Z2009-12-18T15:12:07Z
<p>Hi - I'm looking to deploy a django app on AWS (since I have some credit coupon) and am looking for a good place to read about it - mostly b/c I never used it before. thanks</p>
http://stackoverflow.com/questions/1915095/amazon-aws-itemlookup-with-13-digit-isbn1Amazon AWS ItemLookup with 13 Digit ISBNPilgrim2009-12-16T14:46:12Z2009-12-16T14:57:54Z
<p>I used to be able to do 13 digit ISBN lookups, but now I can't.</p>
<p>Here is the query for the 13-digit ISBN: 9780073380957.</p>
<p><a href="http://ecs.amazonaws.com/onca/xml?AWSAccessKeyId=" rel="nofollow">http://ecs.amazonaws.com/onca/xml?AWSAccessKeyId=</a>&ItemId=9780073380957&Operation=ItemLookup&ResponseGroup=Images%2CItemAttributes&Service=AWSECommerceService&Timestamp=2009-12-16T14%3A30%3A02Z&Version=2009-06-01&Signature=</p>
<p>Returns:
f6770ab1-9b3e-48d3-9492-750e8d773c1b0.0053760000000000TrueNewShipASINAmazon19780073380957ImagesItemAttributes1-SubmissionDateAllAWS.InvalidParameterValue9780073380957 is not a valid value for ItemId. Please change this value and retry your request.</p>
<p>However, the 10-digit ISBN for the same book works:</p>
<p><a href="http://ecs.amazonaws.com/onca/xml?AWSAccessKeyId=" rel="nofollow">http://ecs.amazonaws.com/onca/xml?AWSAccessKeyId=</a>&ItemId=0073380954&Operation=ItemLookup&ResponseGroup=Images%2CItemAttributes&Service=AWSECommerceService&Timestamp=2009-12-16T14%3A44%3A10Z&Version=2009-06-01&Signature=</p>
<p>I'm using pyaws, if that makes any difference.</p>
http://stackoverflow.com/questions/1914055/simpledb-direct-client-access2SimpleDB direct client accessAlexJReid2009-12-16T11:25:39Z2009-12-16T12:46:47Z
<p>One of the useful things about S3 for content storage is that a client can directly make a direct HTTP request to download the object. For instance, this is how Twitter serve up avatar images.</p>
<p>SimpleDB provides an HTTP interface to data. Rather than having to write a proxy that sits inbetween SimpleDB and the client, is it possible for client software (i.e. desktop, mobile) to make calls to <em>read</em> values from a SimpleDB domain, <em>without</em> sharing credentials that shouldn't be shared? Or is a proxy in-between the only way to go?</p>
http://stackoverflow.com/questions/1842292/amazon-product-availability0Amazon Product Availabilityunknown (google)2009-12-03T19:26:00Z2009-12-04T17:33:31Z
<p>Many products on amazon are unavailable but a date is given for when they'll be in stock. I've used AWS and got an XML reply but I can't find the date information anywhere. Is it possible to get this information? Thanks.</p>
<p>NOTE: This is what i've got as a request, what should I alter?</p>
<pre><code>http://ecs.amazonaws.com/onca/xml?AWSAccessKeyId=MYID&AssociateTag=MYTAG&ItemId=THEITEMID&Operation=ItemLookup&ResponseGroup=Large&ReviewSort=-HelpfulVotes&Service=AWSECommerceService&Signature=MYSIGNATURE&Timestamp=2009-12-04T17%3A35%3A43Z&Version=2009-06-01
</code></pre>
http://stackoverflow.com/questions/1814235/how-to-verify-amazon-fps-simplepay-ipn-instant-payment-notification-using-vers0How to verify Amazon FPS/SimplePay IPN (Instant Payment Notification), using version 2?Zachary Burt2009-11-29T00:15:39Z2009-11-29T00:15:39Z
<p>I've looked through the documentation, I've tried downloading various example code, and I've tried hacking various permutations. After a full day's worth of work, I'm spent, and throwing in the towel. So now I'm begging for some help. Can someone please post a PHP class or function, wherein I can simply verify that the ping to my IPN script is legitimate, using signature version 2?</p>
<p>Thank you so much.</p>
<p>Zack</p>
http://stackoverflow.com/questions/1803352/how-do-i-silence-the-following-rightaws-messages-when-running-tests0How do I silence the following RightAWS messages when running testsLaurie Young2009-11-26T12:15:16Z2009-11-26T17:04:38Z
<p>I'm using the RighAWS gem, and mocking at the http level so that the RightAWS code is being executed as part of my tests. </p>
<p>When this happens I get the following output</p>
<p><code>....New RightAws::S3Interface using per_request-connection mode
Opening new HTTP connection to s3.amazonaws.com:80
.New RightAws::S3Interface using per_request-connection mode
.</code></p>
<p>Even though all the tests pass, when I do have errors its harder to scan them because of this output. is there a nice way to silence it?</p>
http://stackoverflow.com/questions/1791978/problem-with-ruby-aws-please-help0Problem with Ruby AWS - Please help!Michael Waxman2009-11-24T18:26:53Z2009-11-24T21:06:04Z
<p>I'm using the Ruby-AWS gem to interact with Amazon. I was testing it out in my controller and it worked fine, but when I moved the code into my Model, it isn't correctly parsing the data back from amazon.</p>
<p>For instance, in my controller</p>
<pre><code>@items[0].medium_image.url = "http://ecx.images-amazon.com/images/I/61YIGdgh86L._SL160_.jpg"
</code></pre>
<p>But in my model</p>
<pre><code>items[0].medium_umage.url = '[#<Amazon::AWS::AWSObject::URL:0x1030ba758 value="http://ecx.images-amazon.com/images/I/61YIGdgh86L._SL160_.jpg">]'
</code></pre>
<p>Please help!</p>
<p>In both cases, my code is:</p>
<pre><code> def add_amazon_links
require 'amazon/aws'
require 'amazon/aws/search'
query = self.name
#!/usr/bin/ruby -w
#
# $Id: item_search1,v 1.4 2008/04/11 19:24:24 ianmacd Exp $
is = ItemSearch.new( 'All', { 'Keywords' => '#{query}' })
rg = ResponseGroup.new( 'Medium', 'Reviews')
req = Request.new
req.locale = 'us'
resp = req.search( is, rg )
items = resp.item_search_response[0].items[0].item
@items = resp.item_search_response[0].items[0].item
unless @items[0].blank?
self.image_url = @items[0].medium_image.url
self.a_price = @items[0].item_attributes[0].list_price[0].formatted_price
self.title = @items[0].item_attributes[0].title
self.a_url = @items[0].detail_page_url
self.save!
end
</code></pre>
<p>end</p>
http://stackoverflow.com/questions/1763312/unable-to-connect-to-database-on-aws0unable to connect to database on AWSAnkit Sachan2009-11-19T13:31:08Z2009-11-23T10:37:35Z
<p>hi all</p>
<p>actually I have my website build with Joomla hosted on hostmonster</p>
<p>but all Joomla website need a database support to run this database is on AWS
configuration files need to be updated for that
I have to change host address
I put the IP (of AWS host) in host but it displayed "unable to connect to database MySQL"
can u help me out
?????????</p>
http://stackoverflow.com/questions/1774018/what-is-a-good-way-to-access-external-data-from-aws0What is a good way to access external data from awsarigreen2009-11-21T00:17:01Z2009-11-21T01:42:03Z
<p>I would like to access external data from my aws ec2 instance.</p>
<p>In more detail: I would like to specify inside by user-data the name of a folder containing about 2M of binary data. When my aws instance starts up, I would like it to download the files in that folder and copy them to a specific location on the local disk. I only need to access the data once, at startup.</p>
<p>I don't want to store the data in S3 because, as I understand it, this would require storing my aws credentials on the instance itself, or passing them as userdata which is also a security risk. Please correct me if I am wrong here.</p>
<p>I am looking for a solution that is both secure and highly reliable.</p>
http://stackoverflow.com/questions/1763519/how-to-connect-to-database-on-another-server0how to connect to database on another serverAnkit Sachan2009-11-19T14:08:22Z2009-11-20T16:54:00Z
<p>Hi,</p>
<p>Could I have my php scripts on server A and connect to the MySQL database on server B?</p>
<p>If yes, how it would be done? Thanks in advance</p>
http://stackoverflow.com/questions/1760348/using-ec2-load-balancing-with-existing-wordpress-blog1Using EC2 Load Balancing with Existing Wordpress BlogZach Dunn2009-11-19T01:26:57Z2009-11-19T02:12:56Z
<p>Hello,</p>
<p>I currently have a virtual dedicated server through Media Temple that I use to run several high traffic Wordpress blogs. Both tend to receive sudden StumbleUpon traffic surges that (I'm assuming) cause the server CPU to run at 100% and slow down everything. I'm currently using WP-Super-Cache, S3, and CloudFront for most static files, but high traffic is still causing slowdown on the CPU.</p>
<p>From what I'm reading, it seems like I might want to use EC2 to help the existing server when traffic spikes occur. Since I'm currently using the top tier of virtual dedicated servers on Media Temple, I'd like to avoid jumping to a dedicated server if possible. I get the sense that AWS might help boost the existing server's power. How would I go about doing this?</p>
<p>I apologize if I'm using any of these terms incorrectly -- I'm relatively amateur when it comes to server administration. If this isn't the best way to improve performance, what is the recommended course of action?</p>
http://stackoverflow.com/questions/1754184/amazon-s3-post-upload-from-iphone1Amazon S3 POST upload (from iPhone)Mirko Froehlich2009-11-18T07:16:33Z2009-11-18T07:34:45Z
<p>A bit of background: I am building an iPhone app with a complementary server backend (written in Rails or possibly Sinatra, but probably not relevant for this discussion). Part of the functionality involves uploading pictures from the iPhone to the server. These ultimately get stored on S3, so in order to simplify the app and conserve bandwidth, I would like to upload the pictures directly from the iPhone to S3, skipping my backend server.</p>
<p>Using the S3 REST API (in which case I would likely use <a href="http://allseeing-i.com/ASIHTTPRequest/S3" rel="nofollow">ASIHTTPRequest</a>) would mean storing the AWS key and secret in the iPhone app, which I don't want to do for security reasons.</p>
<p>For similar reasons I don't want to make my S3 bucket publicly writable.</p>
<p>Now it looks like S3 also has support for <a href="http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/UsingHTTPPOST.html" rel="nofollow">browser-based uploads using POST</a>. If I understand it correctly, this works by generating a signed policy document on the server, which then allows the client app to directly POST the file to S3. It seems like in principle this should work not only for browsers, but also for iPhone apps.</p>
<p>However, I have a hard time figuring out the exact way of getting this working (not the iPhone specific part, just S3 POST uploads in general). What information needs to be sent to the server in order to calculate the signature (e.g. does it need the file size or any other file information)? I'll dig through the official docs some more and start experimenting with this, but if anybody could point me to some tutorials or sample code, that would be much appreciated.</p>
http://stackoverflow.com/questions/1731659/quantity-in-amazon-cart0Quantity in amazon cart?unknown (google)2009-11-13T20:22:29Z2009-11-13T20:22:29Z
<p>Hi I'd like to change the quantity in an AWS order. I've used the form below and that works fine for adding 1 item to the cart, but when I try to change it to a quantity of 2 it says there are no items in my cart. What am I doing wrong? Thanks.</p>
<pre><code> <form method="GET" action="http://www.amazon.com/gp/aws/cart/add.html" id="Quantity">
<input type="hidden" name="AWSAccessKeyId" value="Access Key ID" />
<input type="hidden" name="AssociateTag" value="Associate Tag" />
<?php
echo "<input type='hidden' name='ASIN.1' value='".$itemid."'/>";
?>
<input type="hidden" name="Quantity.1" value="1"/><br/>
<input type="image" src="buynow.gif" value="Submit" alt="Submit">
</form>
</code></pre>
http://stackoverflow.com/questions/1726990/ssl-slowness-in-ec22SSL slowness in EC2grourk2009-11-13T03:37:45Z2009-11-13T03:37:45Z
<p>We've deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shrinking farm of web servers. Each web server also runs nginx with a cluster of mongrels. The nginx here takes care of static content and load balancing the mongrels.</p>
<p>Anyway, our traffic by-and-large is HTTPS. We have the 2 proxies taking care of SSL. I've noticed that our network throughput on those instances caps out at only 60 Mbps or so. To contrast, in testing I am able consistently to get 700+ Mbps on a small instance via regular HTTP. In fact, this is the same as what I can get on a large instance. Similar to what the Right Scale guys got in <a href="http://blog.rightscale.com/2007/10/28/network-performance-within-amazon-ec2-and-to-amazon-s3/" rel="nofollow">their testing</a>. (Amazon says a small gets "moderate" network I/O, while a large gets "high". If I had to speculate, I think this is just their way of saying that there are more small instances per physical box sharing one network card. I'm not sure if it means that a large gets a dedicated network interface, but I would doubt it.)</p>
<p>In testing, I was able to get a large instance to get about 250 Mbps SSL. This says to me that the CPU or some other resource is the bottleneck. However, our monitoring graphs don't show the CPU on our proxies being particularly busy.</p>
<p>My questions are:</p>
<ol>
<li>Is my instinct about SSL being slower due to CPU correct and our monitoring graphs are wrong? Or could some other resource be the limiting factor?</li>
<li>Should we just take the extra cost and put the proxies on high-CPU instances? Or would it be better to do just add more small instances?</li>
<li>Should we offload the SSL termination to the web servers? This introduces one more problem, though: how do we get the client IP address in our application? Right now our proxy sets it in the X-FORWARDED-FOR header, but obviously this wouldn't be possible if it's not decrypting SSL.</li>
</ol>
<p>I'd love to hear about any similar setups. We tinkered a bit with their Elastic Load Balancer, but I think that basically puts us in the same situation as #3 above. Has anyone else made the switch to ELB and found it to be worth it?</p>
http://stackoverflow.com/questions/1665193/ec2-bundling-on-aws-amazon-web-services0ec2 bundling on AWS (Amazon Web Services)Hortitude2009-11-03T04:09:56Z2009-11-03T13:32:51Z
<p>I took an existing ec2 image that I had, made some changes and re-bundled it.</p>
<p>However, when I try to launch my new image it only lets me launch it as a Large instance -- not a small image.</p>
<p>What happened? How can I fix it?</p>
<p>I made sure when calling ec2-bundle-vol to specify -r i386</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1661275/disable-boto-logging-without-modifying-the-boto-files0Disable boto logging without modifying the boto files.uswaretech2009-11-02T13:15:48Z2009-11-03T12:23:56Z
<p>I am using the Boto library to talk to AWS. I want to disable logging. (Or redirect to /dev/null or other file). I cant find an obvious way to do this. I tried this, but that doesn't seem to help.</p>
<pre><code>import boto
boto.set_file_logger('boto', 'logs/boto.log')
</code></pre>
<p>This says it is possible, <a href="http://developer.amazonwebservices.com/connect/thread.jspa?messageID=52727&#52727" rel="nofollow">http://developer.amazonwebservices.com/connect/thread.jspa?messageID=52727&#52727</a> but AFAIK the documentation doesnt tell how.</p>
http://stackoverflow.com/questions/1607805/creating-expiring-links-to-s3-or-cloudfront-hosted-content-with-asp-net0Creating expiring links to S3 or Cloudfront hosted content with ASP .Netbrad.huffman2009-10-22T14:52:56Z2009-10-28T21:14:36Z
<p>Anyone have an example of creating a signed URL with an expiration using ASP .Net? I'm exploring using <a href="http://code.google.com/p/lits3/" rel="nofollow">LitS3</a> or <a href="http://www.codeplex.com/ThreeSharp" rel="nofollow">ThreeSharp</a> in my project, and have not seen any specific methods to do this in either of those projects. Thanks.</p>
http://stackoverflow.com/questions/1587416/ec2-non-root-user-login1EC2 non root user loginjortiz812009-10-19T07:48:16Z2009-10-19T16:37:59Z
<p>Is there a way to log into an EC2 ubuntu ami or a way to set up an ubuntu ami so that non-root users can log in? I tried creating a user and logging in with the associated password. I also tried using the private key, copied the authorized-keys file into the .ssh directory of the non-root user's home directory and tried to log in to the box with that user account id. Neither method worked.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1586086/getting-product-details-using-amazon-api0Getting product details using Amazon APIunknown (google)2009-10-18T21:32:56Z2009-10-18T21:43:41Z
<p>Hi, I've got the following code to output a list of items from amazon, but I not sure how to access specific products (with Summery, reviews, etc). Any help would be appreciated.</p>
<pre><code><?php
function makeAWSUrl($parameters, $associate_tag, $access_key, $secret_key, $aws_version = '2009-06-01') {
$host = 'ecs.amazonaws.com';
$path = '/onca/xml';
$query = array(
'Service' => 'AWSECommerceService',
'AWSAccessKeyId' => $access_key,
'AssociateTag' => $associate_tag,
'Timestamp' => gmdate('Y-m-d\TH:i:s\Z'),
'Version' => $aws_version,
);
// Merge in any options that were passed in
if (is_array($parameters)) {
$query = array_merge($query, $parameters);
}
// Do a case-insensitive, natural order sort on the array keys.
ksort($query);
// create the signable string
$temp = array();
foreach ($query as $k => $v) {
$temp[] = str_replace('%7E', '~', rawurlencode($k)) . '=' . str_replace('%7E', '~', rawurlencode($v));
}
$signable = implode('&', $temp);
$stringToSign = "GET\n$host\n$path\n$signable";
// Hash the AWS secret key and generate a signature for the request.
$hex_str = hash_hmac('sha256', $stringToSign, $secret_key);
$raw = '';
for ($i = 0; $i < strlen($hex_str); $i += 2) {
$raw .= chr(hexdec(substr($hex_str, $i, 2)));
}
$query['Signature'] = base64_encode($raw);
ksort($query);
$temp = array();
foreach ($query as $k => $v) {
$temp[] = rawurlencode($k) . '=' . rawurlencode($v);
}
$final = implode('&', $temp);
return 'http://' . $host . $path . '?' . $final;
}
$url = makeAWSUrl(array('Keywords' => 'ipod',
'Operation' => 'ItemSearch',
'SearchIndex' => 'Electronics'),
'ResponseGroup' => 'Medium',
'someid', 'aaaaaaaaaaaaa', 'aaaaaaaaaaaaaaaaaaaaaaaaaaa');
$response = simplexml_load_file($url);
foreach ($response->Items->Item as $item)
{
$Title [] = $item->ItemAttributes->Title;
}
foreach($Title as $CurrentTitle)
{
echo "<h2>".$CurrentTitle."</h2>";
}
?>
</code></pre>
http://stackoverflow.com/questions/1577997/google-books-xml0Google Books XML? Laurence Dawson2009-10-16T13:18:20Z2009-10-16T13:24:57Z
<p>Hi everyone,
I've been using Amazon Web Services for a while and am looking to change to another data provider.</p>
<p>I've been looking into Google Books, but I'm unable to see how to get the data out in say XML format. I would like to do something like:</p>
<p>Request Book from ISBN using REST > Receive XML file containing book information etc</p>
<p>Does anyone have any experience in doing anything like this?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1512535/enumerate-keys-in-amazon-simpledb1Enumerate keys in Amazon SimpleDBJustin2009-10-03T01:36:39Z2009-10-03T06:23:54Z
<p>I'm trying to enumerate keys in Amazon SimpleDB. In SQL, it would be something like:</p>
<pre><code>select unique itemName() from domain;
</code></pre>
<p>I've searched around but didn't find any way to do this. Any help?</p>
http://stackoverflow.com/questions/1493238/s3-redirecting-keys0S3 Redirecting Keyssmock2009-09-29T15:17:13Z2009-09-29T15:17:13Z
<p>Is it possible to set up redirects on s3 keys? I haven't been able to find any information on this online.</p>
http://stackoverflow.com/questions/1454629/aws-ssh-access-permission-denied-publickey-issue1AWS ssh access 'Permission denied (publickey)' issueAlex2009-09-21T13:54:31Z2009-09-21T13:59:58Z
<p>How to connect to a AWS instance through ssh?</p>
<p>I have:</p>
<ol>
<li>Signed up at AWS;</li>
<li>Created a public key and a certificate at AWS website and saved them to disk;</li>
<li>Went to my console and created environment variables:</li>
</ol>
<pre>
#export JAVA_HOME=/usr/lib/jvm/java-6-openjdk/
#export EC2_CERT=/home/default/aws/cert-EBAINCRNWHDSCWWIHSOKON2YWGJZ5LSQ.pem
#export EC2_PRIVATE_KEY=/home/default/aws/pk-EBAINCRNWHDSCWWIHSOKON2YWGJZ5LSQ.pem
</pre>
<ol>
<li>Told AWS API to use this keypair and saved the keypair to file:</li>
</ol>
<pre>
#ec2-add-keypair ec2-keypair > ec2-keypair.pem
</pre>
<ol>
<li>Started an AWS Ubuntu 9 instance using this keypair:</li>
</ol>
<pre>
#ec2-run-instances ami-ed46a784 -k ec2-keypair
</pre>
<ol>
<li><p>Attempted to establish a ssh connection to the instance:</p>
<pre><code>#ssh -v -i ec2-keypair.pem ubuntu@ec2-174-129-185-190.compute-1.amazonaws.com
OpenSSH_5.1p1 Debian-5ubuntu1, OpenSSL 0.9.8g 19 Oct 2007
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to ec2-174-129-185-190.compute-1.amazonaws.com [174.129.185.190] port 22.
debug1: Connection established.
debug1: identity file ec2-keypair.pem type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.1p1 Debian-5ubuntu1
debug1: match: OpenSSH_5.1p1 Debian-5ubuntu1 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.1p1 Debian-5ubuntu1
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'ec2-174-129-185-190.compute-1.amazonaws.com' is known and matches the RSA host key.
debug1: Found key in /home/default/.ssh/known_hosts:11
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Trying private key: ec2-keypair.pem
debug1: read PEM private key done: type RSA
debug1: Authentications that can continue: publickey
debug1: No more authentication methods to try.
Permission denied (publickey).
</code></pre>
<p>What could be the problem and how to make it work?</p></li>
</ol>