User AdamK - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T04:40:03Zhttp://stackoverflow.com/feeds/user/14595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1587416/ec2-non-root-user-login/1588695#15886951Answer by AdamK for EC2 non root user loginAdamK2009-10-19T13:34:26Z2009-10-19T13:34:26Z<p>Make sure you are sending your AWS keypair as the identity file, i.e.</p>
<pre><code>ssh -i ~/.ssh/keypair.pem user@ec2-174-129-xxx-xx.compute-1.amazonaws.com
</code></pre>
<p>Also check that SSH is enabled in your security group</p>
http://stackoverflow.com/questions/640838/whats-the-best-method-for-passing-aws-credentials-as-user-data-to-an-ec2-instanc3What's the best method for passing AWS credentials as user data to an EC2 instance?AdamK2009-03-12T23:05:46Z2009-06-27T07:31:59Z
<p>I have a job processing architecture based on AWS that requires EC2 instances query S3 and SQS. In order for running instances to have access to the API the credentials are sent as user data (-f) in the form of a base64 encoded shell script. For example:</p>
<pre><code>$ cat ec2.sh
...
export AWS_ACCOUNT_NUMBER='1111-1111-1111'
export AWS_ACCESS_KEY_ID='0x0x0x0x0x0x0x0x0x0'
...
$ zip -P 'secret-password' ec2.sh
$ openssl enc -base64 -in ec2.zip
</code></pre>
<p>Many instances are launched...</p>
<pre><code>$ ec2run ami-a83fabc0 -n 20 -f ec2.zip
</code></pre>
<p>Each instance decodes and decrypts ec2.zip using the 'secret-password' which is hard-coded into an init script. Although it does work, I have two issues with my approach.</p>
<ol>
<li>'zip -P' is not very secure</li>
<li>The password is hard-coded in the instance (it's always 'secret-password')</li>
</ol>
<p>The method is very similar to the one described <a href="http://blogs.sun.com/ec2/entry/using%5Fparameterized%5Flaunches%5Fto%5Fcustomize" rel="nofollow">here</a></p>
<p>Is there a more elegant or accepted approach? Using gpg to encrypt the credentials and storing the private key on the instance to decrypt it is an approach I'm considering now but I'm unaware of any caveats. Can I use the AWS keypairs directly? Am I missing some super obvious part of the API? </p>
http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/654106#6541060Answer by AdamK for What's the next thing on your list to learn?AdamK2009-03-17T12:54:13Z2009-03-17T12:54:13Z<p>Better parallel programming techniques like hybrid OpenMP/MPI since it will be the best way to cope with future architectures.</p>
http://stackoverflow.com/questions/638352/ec2-kill-all-my-instances-from-the-command-line/640762#6407620Answer by AdamK for ec2: kill all my instances from the command lineAdamK2009-03-12T22:36:11Z2009-03-12T22:42:15Z<p><a href="https://console.aws.amazon.com/" rel="nofollow" title="AWS Console">AWS Console</a> and <a href="http://developer.amazonwebservices.com/connect/entry.jspa?entryID=609" rel="nofollow" title="Elasticfox">Elasticfox</a> make it pretty easy. </p>
<p>A command-line solution can be achieved in one-line using the EC2 API tools:</p>
<pre><code>for i in `ec2din | grep running | cut -f2`; do ec2kill $i; done
</code></pre>
http://stackoverflow.com/questions/633396/whats-the-best-way-to-search-for-a-string-in-a-file/637391#6373910Answer by AdamK for What's the best way to search for a string in a file?AdamK2009-03-12T04:40:09Z2009-03-12T04:40:09Z<pre><code>open('some.txt').grep(/string/)
</code></pre>
http://stackoverflow.com/questions/193426/have-you-made-interesting-use-of-mechanical-turk/608587#6085871Answer by AdamK for Have you made interesting use of Mechanical Turk?AdamK2009-03-03T22:54:50Z2009-03-03T22:54:50Z<p>My favorite example of Mechanical Turk in action is one where workers had to extract data from figures and tables in scientific literature. There's a good description and vidoe of the experiment here:</p>
<p><a href="http://usefulchem.blogspot.com/2008/12/mechanical-turk-does-solubility-on.html" rel="nofollow">http://usefulchem.blogspot.com/2008/12/mechanical-turk-does-solubility-on.html</a></p>
http://stackoverflow.com/questions/328922/transfer-mysql-database-to-another-computer/608536#6085360Answer by AdamK for Transfer Mysql database to another computerAdamK2009-03-03T22:40:42Z2009-03-03T22:40:42Z<p>I often find myself using some variation of this one-liner to copy a database over the network.</p>
<pre><code>mysqldump --opt --compress --user=username database | mysql --user=username2 --password=p2 --host=hostB -D database -C database
</code></pre>
<p>Which I originally read about here:</p>
<p><a href="http://www.igvita.com/2007/10/10/hands-on-mysql-backup-migration/" rel="nofollow">http://www.igvita.com/2007/10/10/hands-on-mysql-backup-migration/</a></p>
http://stackoverflow.com/questions/364622/should-i-buy-ruby-1-8-books-or-wait-for-ruby-1-9-books/600531#6005312Answer by AdamK for Should I buy Ruby 1.8 Books or wait for Ruby 1.9 Books?AdamK2009-03-01T21:13:21Z2009-03-01T21:13:21Z<p><em>The Ruby Programming Language</em> covers 1.8 and 1.9. It's an excellent reference book for either version. I highly recommend it. </p>
http://stackoverflow.com/questions/565137/multithreaded-job-queue-manager/568743#5687430Answer by AdamK for Multithreaded job queue managerAdamK2009-02-20T08:38:21Z2009-02-20T08:38:21Z<p>There's plenty of distributed resource managers out there. The software that meets nearly all of your requirements is <a href="http://gridengine.sunsource.net/" rel="nofollow">Sun Grid Engine</a>. SGE is used on some of the worlds largest supercomputers and is in active development.</p>
<p>There's also similar solutions in <a href="http://www.clusterresources.com/pages/products/torque-resource-manager.php" rel="nofollow">Torque</a>, <a href="http://www.platform.com/Products/platform-lsf" rel="nofollow">Platform LSF</a>, and <a href="http://www.cs.wisc.edu/condor/" rel="nofollow">Condor</a>.</p>
<p>It sounds like you may want to roll your own but there's plenty of functionality in all of the above.</p>
http://stackoverflow.com/questions/498857/how-do-you-read-an-existing-rails-project/505331#5053310Answer by AdamK for How do you read an existing Rails project?AdamK2009-02-02T22:56:04Z2009-02-02T22:56:04Z<p>Aside from the already posted tips of running specs, and decomposing the MVC, I also like: </p>
<pre><code>rake routes
</code></pre>
<p>as another way to get a high-level view of all the routes into the app</p>
<pre><code>./script/console
</code></pre>
<p>The rails irb console is still my favorite way to inspect models and model methods. Grab a few records and work with them in irb. I know it helps me during development and test.</p>
http://stackoverflow.com/questions/504553/does-the-rails-orm-limit-the-ability-to-perform-aggregations/505296#5052964Answer by AdamK for Does the Rails ORM limit the ability to perform aggregations?AdamK2009-02-02T22:47:03Z2009-02-02T22:47:03Z<p>Limitations of ActiveRecord are one of the reasons I had trouble using Rails in a scientific environment. You might want to check out alternative Ruby ORM's that make it a bit easier to work with a legacy database:</p>
<ul>
<li><a href="http://sequel.rubyforge.org" rel="nofollow" title="Sequel">Sequel</a></li>
<li><a href="http://www.datamapper.org" rel="nofollow" title="DataMapper">DataMapper</a></li>
</ul>
<p>Ultimately though ORM's by design take you away from SQL so it's possible that none of them are a good fit.</p>
http://stackoverflow.com/questions/1454629/aws-ssh-access-permission-denied-publickey-issue/1454647#1454647Comment by AdamK on AWS ssh access 'Permission denied (publickey)' issueAdamK2009-09-21T15:27:48Z2009-09-21T15:27:48ZYou can also use ssh-add ec2-keypair.pem so you can drop the -i optionhttp://stackoverflow.com/questions/640838/whats-the-best-method-for-passing-aws-credentials-as-user-data-to-an-ec2-instanc/641518#641518Comment by AdamK on What's the best method for passing AWS credentials as user data to an EC2 instance?AdamK2009-03-16T17:29:21Z2009-03-16T17:29:21ZVlad, thank you for all the helpful comments. I updated my question. The gist of it is, "is my method secure?" and "is there a better approach?". I hadn't thought of using a RAM disk. The AWS credentials need to be stored only as long as instances are running and querying for jobs. Thanks againhttp://stackoverflow.com/questions/640838/whats-the-best-method-for-passing-aws-credentials-as-user-data-to-an-ec2-instanc/641518#641518Comment by AdamK on What's the best method for passing AWS credentials as user data to an EC2 instance?AdamK2009-03-13T21:23:54Z2009-03-13T21:23:54ZVlad, the 'parameterizing your AMI' article is almost how I am currently doing things now. Actually, <a href="http://blogs.sun.com/ec2/entry/using_parameterized_launches_to_customize" rel="nofollow">blogs.sun.com/ec2/entry/…</a> is even closer. The problem is user-data in my case is sensitive (AWS creds) and the password must be contained in the AMI.http://stackoverflow.com/questions/640838/whats-the-best-method-for-passing-aws-credentials-as-user-data-to-an-ec2-instanc/641518#641518Comment by AdamK on What's the best method for passing AWS credentials as user data to an EC2 instance?AdamK2009-03-13T19:47:00Z2009-03-13T19:47:00ZI don't want to bundle the credentials in the instance since I want users of my AMI to use their own AWS credentials. Once an instance boots, it will connect to S3 buckets and SQS queues specified by the user who starts the instances. SCP works OK for a few machines but not 10 or 100. For loops? meh