[00:36] stupid question, but I just don't see it....what is the syntax for the AWS_CREDENTIAL_FILE [00:37] AWSAccessKeyId works for one [00:37] but can't figure out the other [00:37] tried versions of AWSSecretAccessKey [00:37] don't see in docs [00:38] ? [00:42] appears to be AWSSecretKey [13:25] New bug: #412143 in ubuntu-on-ec2 "ec2-init init script has bad Required-Start header" [Low,Confirmed] https://launchpad.net/bugs/412143 [16:05] guys, is the wiki the official and up-to-date source for the official ubuntu AMI names? [16:05] https://help.ubuntu.com/community/EC2StartersGuide#Getting%20the%20images specifically [16:05] I'm still running into the network bug during startup. The bug is in "fix released" state, but there is no AMI mentioned in the ticket [16:06] https://bugs.launchpad.net/vmbuilder/+bug/308530 is the bug [16:06] Launchpad bug 308530 in ubuntu-on-ec2 "Wait for network before downloading ssh credentials or user-data" [Medium,Fix released] [16:20] Would anyone care to hazard a guess as to why this is causing a segfault? # du -hc / | grep -P '\t/[^/]+$' === zul_ is now known as zul [18:18] agussman: check dmesg [18:20] ahasenack: thanks. After playing around with it, I realized it was the grep that was causing problems but I could avoid using it by providing the --max-depth 1 option to du [18:20] agussman: the dmesg would be to check if there was any kernel panic or oops happening [18:20] bar that, yeah, it's just a user space bug in grep or du === jeremydei_ is now known as jeremydei [22:14] Hi there [22:14] I'm looking for an AMI to build a high load web server for static pages. [22:14] It's just to test a load generator and must only run for about an hour [22:15] so it would be nice to have something that comes pretty much pre configured [22:15] high load means something about 100 req/sec [22:15] can you give me a hint what would be a good image? [22:16] walski: Since you're presumably using Ubuntu, it's easy to start with a clean server AMI and install Apache. [22:16] is there a clean ubuntu image? [22:17] looked at the comunity rep[ository [22:17] but found only a lot of preconfigured stuff which i just does not need [22:17] walski: What release (version) would you like to use? [22:17] Doesn't matter ;) [22:18] As I said it's more a fire and forget thing [22:18] would take what comes as the easiest solution [22:18] walski: I publish a number of Ubuntu releases on http://alestic.com which are pretty popular for production use. [22:19] I'd recommmend picking a "server 32-bit" Hardy or Jaunty. [22:19] I also list the AMIs published by Canonical. [22:24] Then: apt-get update && apt-get upgrade -y && apt-get install -y apache2 [22:25] Drop your static files in /var/www and you should be set. [22:29] thanks! [22:30] If you find it can't perform to your expectations with m1.small, then upgrade to c1.medium which gives 5x the CPU for 2x the price. [22:30] Then step up to a c1.xlarge (which requires 64-bit AMI) [22:42] works great, thank you a lot!