hot questions tagged aws - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T01:50:22Z http://stackoverflow.com/feeds/tag?tagnames=aws&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1842292/amazon-product-availability 0 Amazon Product Availability unknown (google) 2009-12-03T19:26:00Z 2009-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&amp;AssociateTag=MYTAG&amp;ItemId=THEITEMID&amp;Operation=ItemLookup&amp;ResponseGroup=Large&amp;ReviewSort=-HelpfulVotes&amp;Service=AWSECommerceService&amp;Signature=MYSIGNATURE&amp;Timestamp=2009-12-04T17%3A35%3A43Z&amp;Version=2009-06-01 </code></pre> http://stackoverflow.com/questions/1791978/problem-with-ruby-aws-please-help 0 Problem with Ruby AWS - Please help! Michael Waxman 2009-11-24T18:26:53Z 2009-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 = '[#&lt;Amazon::AWS::AWSObject::URL:0x1030ba758 value="http://ecx.images-amazon.com/images/I/61YIGdgh86L._SL160_.jpg"&gt;]' </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' =&gt; '#{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/1814235/how-to-verify-amazon-fps-simplepay-ipn-instant-payment-notification-using-vers 0 How to verify Amazon FPS/SimplePay IPN (Instant Payment Notification), using version 2? Zachary Burt 2009-11-29T00:15:39Z 2009-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/1760348/using-ec2-load-balancing-with-existing-wordpress-blog 1 Using EC2 Load Balancing with Existing Wordpress Blog Zach Dunn 2009-11-19T01:26:57Z 2009-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-iphone 1 Amazon S3 POST upload (from iPhone) Mirko Froehlich 2009-11-18T07:16:33Z 2009-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/1763519/how-to-connect-to-database-on-another-server 0 how to connect to database on another server Ankit Sachan 2009-11-19T14:08:22Z 2009-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/1763312/unable-to-connect-to-database-on-aws 0 unable to connect to database on AWS Ankit Sachan 2009-11-19T13:31:08Z 2009-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/1726990/ssl-slowness-in-ec2 2 SSL slowness in EC2 grourk 2009-11-13T03:37:45Z 2009-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/1774018/what-is-a-good-way-to-access-external-data-from-aws 0 What is a good way to access external data from aws arigreen 2009-11-21T00:17:01Z 2009-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/1661275/disable-boto-logging-without-modifying-the-boto-files 0 Disable boto logging without modifying the boto files. uswaretech 2009-11-02T13:15:48Z 2009-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&amp;#52727" rel="nofollow">http://developer.amazonwebservices.com/connect/thread.jspa?messageID=52727&amp;#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-net 0 Creating expiring links to S3 or Cloudfront hosted content with ASP .Net brad.huffman 2009-10-22T14:52:56Z 2009-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/1586086/getting-product-details-using-amazon-api 0 Getting product details using Amazon API unknown (google) 2009-10-18T21:32:56Z 2009-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>&lt;?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' =&gt; 'AWSECommerceService', 'AWSAccessKeyId' =&gt; $access_key, 'AssociateTag' =&gt; $associate_tag, 'Timestamp' =&gt; gmdate('Y-m-d\TH:i:s\Z'), 'Version' =&gt; $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 =&gt; $v) { $temp[] = str_replace('%7E', '~', rawurlencode($k)) . '=' . str_replace('%7E', '~', rawurlencode($v)); } $signable = implode('&amp;', $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 &lt; 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 =&gt; $v) { $temp[] = rawurlencode($k) . '=' . rawurlencode($v); } $final = implode('&amp;', $temp); return 'http://' . $host . $path . '?' . $final; } $url = makeAWSUrl(array('Keywords' =&gt; 'ipod', 'Operation' =&gt; 'ItemSearch', 'SearchIndex' =&gt; 'Electronics'), 'ResponseGroup' =&gt; 'Medium', 'someid', 'aaaaaaaaaaaaa', 'aaaaaaaaaaaaaaaaaaaaaaaaaaa'); $response = simplexml_load_file($url); foreach ($response-&gt;Items-&gt;Item as $item) { $Title [] = $item-&gt;ItemAttributes-&gt;Title; } foreach($Title as $CurrentTitle) { echo "&lt;h2&gt;".$CurrentTitle."&lt;/h2&gt;"; } ?&gt; </code></pre> http://stackoverflow.com/questions/1587416/ec2-non-root-user-login 1 EC2 non root user login jortiz81 2009-10-19T07:48:16Z 2009-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/1731659/quantity-in-amazon-cart 0 Quantity in amazon cart? unknown (google) 2009-11-13T20:22:29Z 2009-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> &lt;form method="GET" action="http://www.amazon.com/gp/aws/cart/add.html" id="Quantity"&gt; &lt;input type="hidden" name="AWSAccessKeyId" value="Access Key ID" /&gt; &lt;input type="hidden" name="AssociateTag" value="Associate Tag" /&gt; &lt;?php echo "&lt;input type='hidden' name='ASIN.1' value='".$itemid."'/&gt;"; ?&gt; &lt;input type="hidden" name="Quantity.1" value="1"/&gt;&lt;br/&gt; &lt;input type="image" src="buynow.gif" value="Submit" alt="Submit"&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/1665193/ec2-bundling-on-aws-amazon-web-services 0 ec2 bundling on AWS (Amazon Web Services) Hortitude 2009-11-03T04:09:56Z 2009-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/1454629/aws-ssh-access-permission-denied-publickey-issue 1 AWS ssh access 'Permission denied (publickey)' issue Alex 2009-09-21T13:54:31Z 2009-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-&gt;client aes128-cbc hmac-md5 none debug1: kex: client-&gt;server aes128-cbc hmac-md5 none debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024&lt;1024&lt;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> http://stackoverflow.com/questions/1512535/enumerate-keys-in-amazon-simpledb 1 Enumerate keys in Amazon SimpleDB Justin 2009-10-03T01:36:39Z 2009-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/1577997/google-books-xml 0 Google Books XML? Dawson 2009-10-16T13:18:20Z 2009-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/1493238/s3-redirecting-keys 0 S3 Redirecting Keys smock 2009-09-29T15:17:13Z 2009-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>