<?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/"
		>
<channel>
	<title>Comments on: Moving to the Amazon</title>
	<atom:link href="http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/</link>
	<description>Thoughts, rants, and even some code from the mind of Barney Boisvert.</description>
	<lastBuildDate>Thu, 11 Sep 2014 09:58:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: barneyb</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-74123</link>
		<dc:creator>barneyb</dc:creator>
		<pubDate>Wed, 09 Apr 2008 16:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-74123</guid>
		<description>dickbob,

You can&#039;t install anything on S3, it&#039;s just a file storage service.  I store all my configuration in Subversion, and then back up Subversion up to S3.  So when I deploy a new instance, I&#039;m pulling my Subversion backup to the instance, restoring it, and then checking out all my config files into the appropriate places.  I don&#039;t store backups in Subversion, they just go to S3 directly, but the same idea applies: on creation of a new instance, pull down a backup and restore.</description>
		<content:encoded><![CDATA[<p>dickbob,</p>
<p>You can't install anything on S3, it's just a file storage service.  I store all my configuration in Subversion, and then back up Subversion up to S3.  So when I deploy a new instance, I'm pulling my Subversion backup to the instance, restoring it, and then checking out all my config files into the appropriate places.  I don't store backups in Subversion, they just go to S3 directly, but the same idea applies: on creation of a new instance, pull down a backup and restore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dickbob</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-74013</link>
		<dc:creator>dickbob</dc:creator>
		<pubDate>Wed, 09 Apr 2008 11:35:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-74013</guid>
		<description>Thank for that Barney. That&#039;s helped massively to confirm some of the impressions I had built up about the service.

Another question if I may...

I understand that if the instance is shutdown all the data in the instance is lost. So that would be any CF/Apache settings, uploaded files and MySQL data. Therefore to persist anything you&#039;d use the S3 datastore. Does that mean you need to install CF and MySQL into S3 rather than the image you upload into EC2?</description>
		<content:encoded><![CDATA[<p>Thank for that Barney. That's helped massively to confirm some of the impressions I had built up about the service.</p>
<p>Another question if I may&#8230;</p>
<p>I understand that if the instance is shutdown all the data in the instance is lost. So that would be any CF/Apache settings, uploaded files and MySQL data. Therefore to persist anything you'd use the S3 datastore. Does that mean you need to install CF and MySQL into S3 rather than the image you upload into EC2?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: barneyb</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-73426</link>
		<dc:creator>barneyb</dc:creator>
		<pubDate>Tue, 08 Apr 2008 16:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-73426</guid>
		<description>dickbob,

EC2 is a managed Xen environment.  Xen is a kernel-based paravirtualization engine for Linux.  To use Xen (and therefore EC2), you create a server image (a filesystem snapshot including kernel, config, etc.) and upload it.  Then you use the EC2 tools to start up an instance of the image.  Once the instance is running, it&#039;s just like a physical box for all intents and purposes.  The big benefit is the cost to scale: $0.10/instance/hour.  So if you need to go from running 1 box to running 3 boxes for a couple hours (maybe you got Slashdotted), it&#039;ll cost you all of $0.20 to do it.

I&#039;m currently working on setting up a fully scripted CF/Magnolia/PHP server based on one of the public images from RightScale.  The goal is being able to instantiate their image, run my script, and have a fully functional web/app server within a matter of minutes.  That server will host a variety of domains on it, some with CF, some with Magnolia, and some with PHP.  As I said above, once the image is instantiated, it&#039;s just a Linux server; I&#039;ve got all this running on a physical Linux server already, just a matter of replicating it.

As for being a Windows guy, I don&#039;t think EC2 itself will pose any problems.  It&#039;s just the Linux piece, irrespective of whether you&#039;re using real or virtualized hardware.</description>
		<content:encoded><![CDATA[<p>dickbob,</p>
<p>EC2 is a managed Xen environment.  Xen is a kernel-based paravirtualization engine for Linux.  To use Xen (and therefore EC2), you create a server image (a filesystem snapshot including kernel, config, etc.) and upload it.  Then you use the EC2 tools to start up an instance of the image.  Once the instance is running, it's just like a physical box for all intents and purposes.  The big benefit is the cost to scale: $0.10/instance/hour.  So if you need to go from running 1 box to running 3 boxes for a couple hours (maybe you got Slashdotted), it'll cost you all of $0.20 to do it.</p>
<p>I'm currently working on setting up a fully scripted CF/Magnolia/PHP server based on one of the public images from RightScale.  The goal is being able to instantiate their image, run my script, and have a fully functional web/app server within a matter of minutes.  That server will host a variety of domains on it, some with CF, some with Magnolia, and some with PHP.  As I said above, once the image is instantiated, it's just a Linux server; I've got all this running on a physical Linux server already, just a matter of replicating it.</p>
<p>As for being a Windows guy, I don't think EC2 itself will pose any problems.  It's just the Linux piece, irrespective of whether you're using real or virtualized hardware.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dickbob</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-72813</link>
		<dc:creator>dickbob</dc:creator>
		<pubDate>Tue, 08 Apr 2008 08:25:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-72813</guid>
		<description>I&#039;m really trying to understand what this ec2 thing is???

Is is some kind of virtulisation server?

Do you have to build an image of your server, including OS, to then upload and start up on the Amazon server?

Can you then Remote Desktop (I&#039;m a Windows person), or whatever the Linux equilvent is, onto the instance to then make minor tweaks to the server (delete/move files).

Could you deploy an image that includes an instance of ColdFusion to server several domains?

I realise this is a Linux only service, so how hard would it be for an old Windows head to implement?

Sorry for so many newbie questions but I&#039;m trying to get what this is all about:-)

A simple outline of what ec2 is and isn&#039;t would be really helpful.

dick</description>
		<content:encoded><![CDATA[<p>I'm really trying to understand what this ec2 thing is???</p>
<p>Is is some kind of virtulisation server?</p>
<p>Do you have to build an image of your server, including OS, to then upload and start up on the Amazon server?</p>
<p>Can you then Remote Desktop (I'm a Windows person), or whatever the Linux equilvent is, onto the instance to then make minor tweaks to the server (delete/move files).</p>
<p>Could you deploy an image that includes an instance of ColdFusion to server several domains?</p>
<p>I realise this is a Linux only service, so how hard would it be for an old Windows head to implement?</p>
<p>Sorry for so many newbie questions but I'm trying to get what this is all about:-)</p>
<p>A simple outline of what ec2 is and isn't would be really helpful.</p>
<p>dick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerald Guido</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-71319</link>
		<dc:creator>Gerald Guido</dc:creator>
		<pubDate>Fri, 04 Apr 2008 21:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-71319</guid>
		<description>Barney,
If you have not already, check out RightScale&#039;s free developer account. It makes it &lt;b&gt;very&lt;/b&gt; easy to launch and manage instances it has an interface to S3 as well. Rather handy.

&lt;a href=&quot;http://www.rightscale.com/m/products.html#developer&quot; title=&quot;rightscale.com&quot; rel=&quot;nofollow&quot;&gt;http://www.rightscale.com/m/products.html#developer&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Barney,<br />
If you have not already, check out RightScale's free developer account. It makes it <b>very</b> easy to launch and manage instances it has an interface to S3 as well. Rather handy.</p>
<p><a href="http://www.rightscale.com/m/products.html#developer" title="rightscale.com" rel="nofollow">http://www.rightscale.com/m/products.html#developer</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: barneyb</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-71312</link>
		<dc:creator>barneyb</dc:creator>
		<pubDate>Fri, 04 Apr 2008 20:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-71312</guid>
		<description>So far, it&#039;s been really painless.  Launching instances is a breeze, once you find the right one.  Scripting your additional packages to get installed with yum is a cinch as well.  Last night, in the span of a couple hours, I grabbed an image (the free CentOS 5 image from RightScale), instantiate it, scripted some updates, got a simple python web app running, saved my &quot;installer&quot; back to S3 and killed the instance.  And that was all using the Java-based command line tools.  I&#039;ve since found some nice Firefox plugins to manage everything, which is going to make things much simpler.</description>
		<content:encoded><![CDATA[<p>So far, it's been really painless.  Launching instances is a breeze, once you find the right one.  Scripting your additional packages to get installed with yum is a cinch as well.  Last night, in the span of a couple hours, I grabbed an image (the free CentOS 5 image from RightScale), instantiate it, scripted some updates, got a simple python web app running, saved my "installer" back to S3 and killed the instance.  And that was all using the Java-based command line tools.  I've since found some nice Firefox plugins to manage everything, which is going to make things much simpler.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan G. Switzer, II</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-71303</link>
		<dc:creator>Dan G. Switzer, II</dc:creator>
		<pubDate>Fri, 04 Apr 2008 20:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-71303</guid>
		<description>Yes, I&#039;m definitely interested in how easy the switch is. It still looks like things are a bit of pain to configure and get working right now.</description>
		<content:encoded><![CDATA[<p>Yes, I'm definitely interested in how easy the switch is. It still looks like things are a bit of pain to configure and get working right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joshua noble</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-71280</link>
		<dc:creator>joshua noble</dc:creator>
		<pubDate>Fri, 04 Apr 2008 19:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-71280</guid>
		<description>I&#039;m really interested in this as well, thinking of moving some things over to EC2 and S3</description>
		<content:encoded><![CDATA[<p>I'm really interested in this as well, thinking of moving some things over to EC2 and S3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerald Guido</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-71269</link>
		<dc:creator>Gerald Guido</dc:creator>
		<pubDate>Fri, 04 Apr 2008 18:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-71269</guid>
		<description>Barney,
Do continue to blog on this. I am very interested how it works out for you and what your experiences are like.

Thanx
G</description>
		<content:encoded><![CDATA[<p>Barney,<br />
Do continue to blog on this. I am very interested how it works out for you and what your experiences are like.</p>
<p>Thanx<br />
G</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: barneyb</title>
		<link>https://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/comment-page-1/#comment-71267</link>
		<dc:creator>barneyb</dc:creator>
		<pubDate>Fri, 04 Apr 2008 18:29:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/04/04/moving-to-the-amazon/#comment-71267</guid>
		<description>Sami,

No, my Cari box was a physical box.  I&#039;m not going to be moving directly across, since EC2&#039;s virtualization provides impetus for a number of different configuration decisions.  Basically my plan is to get my current box backing up to S3, configure my EC2 instance the way I want (fully scripted, of course), and then restore a backup to it.  That way I can do the same thing for EC2-EC2 upgrades (new kernel, new CF, whatever).</description>
		<content:encoded><![CDATA[<p>Sami,</p>
<p>No, my Cari box was a physical box.  I'm not going to be moving directly across, since EC2's virtualization provides impetus for a number of different configuration decisions.  Basically my plan is to get my current box backing up to S3, configure my EC2 instance the way I want (fully scripted, of course), and then restore a backup to it.  That way I can do the same thing for EC2-EC2 upgrades (new kernel, new CF, whatever).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
