<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Launch your Rails App in minutes on Amazon EC2 using RightScale</title>
	<atom:link href="http://blog.rightscale.com/2007/09/20/launch-your-rails-app-in-minutes-on-amazon-ec2-using-rightscale/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.rightscale.com/2007/09/20/launch-your-rails-app-in-minutes-on-amazon-ec2-using-rightscale/</link>
	<description>Cloud Management News &#38; Conversations</description>
	<lastBuildDate>Thu, 02 Feb 2012 17:49:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Joseariel</title>
		<link>http://blog.rightscale.com/2007/09/20/launch-your-rails-app-in-minutes-on-amazon-ec2-using-rightscale/#comment-241</link>
		<dc:creator><![CDATA[Joseariel]]></dc:creator>
		<pubDate>Tue, 13 May 2008 15:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.rightscale.com/2007/09/20/launch-your-rails-app-in-minutes-on-amazon-ec2-using-rightscale/#comment-241</guid>
		<description><![CDATA[Me again,

I forgot to mention that the reason why imagemagick installation breaks is because it requires the user to type &#039;y&#039;  in order to install, is there any way of automating this?]]></description>
		<content:encoded><![CDATA[<p>Me again,</p>
<p>I forgot to mention that the reason why imagemagick installation breaks is because it requires the user to type &#8216;y&#8217;  in order to install, is there any way of automating this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseariel</title>
		<link>http://blog.rightscale.com/2007/09/20/launch-your-rails-app-in-minutes-on-amazon-ec2-using-rightscale/#comment-240</link>
		<dc:creator><![CDATA[Joseariel]]></dc:creator>
		<pubDate>Tue, 13 May 2008 15:28:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.rightscale.com/2007/09/20/launch-your-rails-app-in-minutes-on-amazon-ec2-using-rightscale/#comment-240</guid>
		<description><![CDATA[Hello, I recently followed this tutorial and it helped to get me started on EC2 and rightscale but I have been hitting a wall for the last week and it&#039;s driving me crazy. So i thought I would write to you and see if you could give me a hand. I am able to run my instance for my app but there are certain thing I require to setup in order for my app to run ok, The problem is that I dont have much experience with scripts and I have been trying to create two script to completely automate my apps deployment into a single EC2 instance.

1. I have been trying to automate my db configuration like this without any success:

#!/bin/bash -e

mysqladmin -u root password abuven &amp;&amp;
mysql --user=&#039;root&#039; --password=&#039;abuven&#039; &amp;&amp;
grant all on *.* to &#039;root&#039;@localhost identified by &#039;abuven&#039;;
CREATE USER &#039;shastic&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;rgzjGaiOH2&#039;;
grant all on *.* to &#039;shastic&#039;@localhost;
exit

2. I have been trying to have ImageMagick and Rmagick installed automatically also like this:

#!/bin/env

yum install ImageMagick &amp;&amp; yum install ImageMagick-devel &amp;&amp; gem install rmagick –v 1.15.14 ––no–rdoc ––no–ri


For some reason both scripts always break while booting the instance.

Could anybody confirm the syntax i&#039;m using is correct?
I greatly appreciate it.]]></description>
		<content:encoded><![CDATA[<p>Hello, I recently followed this tutorial and it helped to get me started on EC2 and rightscale but I have been hitting a wall for the last week and it&#8217;s driving me crazy. So i thought I would write to you and see if you could give me a hand. I am able to run my instance for my app but there are certain thing I require to setup in order for my app to run ok, The problem is that I dont have much experience with scripts and I have been trying to create two script to completely automate my apps deployment into a single EC2 instance.</p>
<p>1. I have been trying to automate my db configuration like this without any success:</p>
<p>#!/bin/bash -e</p>
<p>mysqladmin -u root password abuven &amp;&amp;<br />
mysql &#8211;user=&#8217;root&#8217; &#8211;password=&#8217;abuven&#8217; &amp;&amp;<br />
grant all on *.* to &#8216;root&#8217;@localhost identified by &#8216;abuven&#8217;;<br />
CREATE USER &#8216;shastic&#8217;@'localhost&#8217; IDENTIFIED BY &#8216;rgzjGaiOH2&#8242;;<br />
grant all on *.* to &#8216;shastic&#8217;@localhost;<br />
exit</p>
<p>2. I have been trying to have ImageMagick and Rmagick installed automatically also like this:</p>
<p>#!/bin/env</p>
<p>yum install ImageMagick &amp;&amp; yum install ImageMagick-devel &amp;&amp; gem install rmagick –v 1.15.14 ––no–rdoc ––no–ri</p>
<p>For some reason both scripts always break while booting the instance.</p>
<p>Could anybody confirm the syntax i&#8217;m using is correct?<br />
I greatly appreciate it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ratul</title>
		<link>http://blog.rightscale.com/2007/09/20/launch-your-rails-app-in-minutes-on-amazon-ec2-using-rightscale/#comment-219</link>
		<dc:creator><![CDATA[ratul]]></dc:creator>
		<pubDate>Mon, 05 May 2008 06:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.rightscale.com/2007/09/20/launch-your-rails-app-in-minutes-on-amazon-ec2-using-rightscale/#comment-219</guid>
		<description><![CDATA[Hi,
I have created a free account as a developer and try to deploy my application following your instruction.
But i am not getting the links as you said. I don&#039;t find Design &gt; Server Templates&gt;Premium/Public section then “edit” icon next to it. I have uploaded the application and database in .zip format. will that be a problem.

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
I have created a free account as a developer and try to deploy my application following your instruction.<br />
But i am not getting the links as you said. I don&#8217;t find Design &gt; Server Templates&gt;Premium/Public section then “edit” icon next to it. I have uploaded the application and database in .zip format. will that be a problem.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

