<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PlanetMysql.ru - информация о СУБД MySQL &#187; Puppet</title>
	<atom:link href="http://planetmysql.ru/category/puppet/feed/" rel="self" type="application/rss+xml" />
	<link>http://planetmysql.ru</link>
	<description>Блог о самой популярной СУБД MySQL</description>
	<lastBuildDate>Sat, 11 Feb 2012 12:38:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>CAOS Theory Podcast 2011.10.28</title>
		<link>http://feedproxy.google.com/~r/451opensource/~3/RCv8S7MKtBA/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=caos-theory-podcast-2011-10-28</link>
		<comments>http://feedproxy.google.com/~r/451opensource/~3/RCv8S7MKtBA/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 18:55:33 +0000</pubDate>
		<dc:creator>The 451 Group</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[black duck]]></category>
		<category><![CDATA[black duck software]]></category>
		<category><![CDATA[caos theory]]></category>
		<category><![CDATA[caostheory]]></category>
		<category><![CDATA[Chef]]></category>
		<category><![CDATA[cloudant]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[jay lyman]]></category>
		<category><![CDATA[Licensing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[matt aslett]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[Opscode]]></category>
		<category><![CDATA[patent]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Puppet]]></category>
		<category><![CDATA[puppet labs]]></category>
		<category><![CDATA[software patents]]></category>
		<category><![CDATA[The 451 Group]]></category>
		<category><![CDATA[the451group]]></category>
		<category><![CDATA[w]]></category>

		<guid isPermaLink="false">http://blogs.the451group.com/opensource/?p=5724</guid>
		<description><![CDATA[Topics for this podcast:
*Opscode Chef extends to Windows for more enterprise devops
*Black Duck continues growth, gains new funding
*Cloudant expands NoSQL database focus, customers
*New open source Web server and vendor Nginx arrives
*The downside of Microsoft&#8217;s Android dollars
iTunes or direct download (27:35, 4.7MB)]]></description>
			<content:encoded><![CDATA[<p>Topics for this podcast:</p>
<p>*Opscode Chef extends to Windows for more enterprise devops<br />
*Black Duck continues growth, gains new funding<br />
*Cloudant expands NoSQL database focus, customers<br />
*New open source Web server and vendor Nginx arrives<br />
*The downside of Microsoft&#8217;s Android dollars</p>
<p><a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=280595473">iTunes</a> or <a href="http://media.libsyn.com/media/caostheory/CAOSTheory20111028.mp3">direct download</a> (27:35, 4.7MB)</p>
<img src="http://feeds.feedburner.com/~r/451opensource/~4/RCv8S7MKtBA" height="1" width="1" /><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=30538&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=30538&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2011/10/28/caos-theory-podcast-2011-10-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overriding bind=&#8230; in included MySQL option files</title>
		<link>http://www.php-groupies.de/blogs/archives/40-Overriding-bind...-in-included-MySQL-option-files.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=overriding-bind-in-included-mysql-option-files</link>
		<comments>http://www.php-groupies.de/blogs/archives/40-Overriding-bind...-in-included-MySQL-option-files.html#comments</comments>
		<pubDate>Tue, 04 Oct 2011 06:29:34 +0000</pubDate>
		<dc:creator>Hartmut Holzgraefe</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[Puppet]]></category>

		<guid isPermaLink="false">http://www.php-groupies.de/blogs/archives/40-guid.html</guid>
		<description><![CDATA[Debian and Ubuntu make use of the !includedir directive at the end of the packaged my.cnf to allow for extending and overriding their default configuration without having to modify the distribution config file.

This is especially nice in combination with configuration tools like puppet as it is usually much easier to add a file to the system than to modify an existing file.

I ran into a small gotcha with this though: the default my.cnf binds mysqld to the localhost TCP interface so that it listens IP 127.0.0.1 only. To make the mysql server reachable from other hosts the bind=127.0.0.1 setting needs to be overwritten.
How to change the binding to a different IP should be obvious, but how to disable an existing binding completely if you want your mysqld to listen on all available interfaces?

The most obvious would be to simply say

bind=

, this does not have any effect though. What needs to be done instead is

bind=0.0.0.0

to make mysqld listen on all interfaces again.

This is obviously a solution for IPv4 only, for allowing incoming connections from all v4 and v6 interfaces allowing bind= without any argument to reset any existing bindings would probably be more clever?]]></description>
			<content:encoded><![CDATA[<p>Debian and Ubuntu make use of the <b>!includedir</b> directive at the end of the packaged <b>my.cnf</b> to allow for extending and overriding their default configuration without having to modify the distribution config file.</p>

<p>This is especially nice in combination with configuration tools like <b>puppet</b> as it is usually much easier to add a file to the system than to modify an existing file.</p>

<p>I ran into a small gotcha with this though: the default my.cnf binds mysqld to the localhost TCP interface so that it listens IP 127.0.0.1 only. To make the mysql server reachable from other hosts the <b>bind=127.0.0.1</b> setting needs to be overwritten.<br />
How to change the binding to a different IP should be obvious, but how to disable an existing binding completely if you want your mysqld to listen on all available interfaces?</p>

<p>The most obvious would be to simply say</p>

<p>bind=</p>

<p>, this does not have any effect though. What needs to be done instead is</p>

<p>bind=0.0.0.0</p>

<p>to make mysqld listen on all interfaces again.</p>

<p>This is obviously a solution for IPv4 only, for allowing incoming connections from all v4 and v6 interfaces allowing <b>bind=</b> without any argument to reset any existing bindings would probably be more clever?</p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=30185&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=30185&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2011/10/04/overriding-bind-in-included-mysql-option-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAOS Theory Podcast 2011.09.30</title>
		<link>http://feedproxy.google.com/~r/451opensource/~3/ZQRl1VXHjV8/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=caos-theory-podcast-2011-09-30</link>
		<comments>http://feedproxy.google.com/~r/451opensource/~3/ZQRl1VXHjV8/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 19:16:51 +0000</pubDate>
		<dc:creator>The 451 Group</dc:creator>
				<category><![CDATA[basho]]></category>
		<category><![CDATA[caos theory]]></category>
		<category><![CDATA[caostheory]]></category>
		<category><![CDATA[Chef]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[devops]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[jay lyman]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[matt aslett]]></category>
		<category><![CDATA[Mergers and acquisitions]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Open-Core]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[OpenStack]]></category>
		<category><![CDATA[Opscode]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Puppet]]></category>
		<category><![CDATA[puppet labs]]></category>
		<category><![CDATA[riak]]></category>
		<category><![CDATA[The 451 Group]]></category>
		<category><![CDATA[the451group]]></category>

		<guid isPermaLink="false">http://blogs.the451group.com/opensource/?p=5626</guid>
		<description><![CDATA[Topics for this podcast:
*Cloud M&#38;A potential around OpenStack
*Oracle&#8217;s commercial extensions for MySQL
*Puppet Labs rolls out Enterprise 2.0, hosts PuppetConf
*Basho bolsters Riak distributed data store in NoSQL race
*Our latest special CAOS report, &#8216;The Changing Linux Landscape&#8217;
iTunes or direct download (25:59, 4.4MB)]]></description>
			<content:encoded><![CDATA[<p>Topics for this podcast:</p>
<p>*Cloud M&amp;A potential around OpenStack<br />
*Oracle&#8217;s commercial extensions for MySQL<br />
*Puppet Labs rolls out Enterprise 2.0, hosts PuppetConf<br />
*Basho bolsters Riak distributed data store in NoSQL race<br />
*Our latest special CAOS report, &#8216;The Changing Linux Landscape&#8217;</p>
<p><a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=280595473">iTunes</a> or <a href="http://media.libsyn.com/media/caostheory/CAOSTheory20110930.mp3">direct download</a> (25:59, 4.4MB)</p>
<img src="http://feeds.feedburner.com/~r/451opensource/~4/ZQRl1VXHjV8" height="1" width="1" /><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=30145&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=30145&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2011/09/30/caos-theory-podcast-2011-09-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High Availability MySQL Cookbook , the review</title>
		<link>http://www.krisbuytaert.be/blog/high-availability-mysql-cookbook-review?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=high-availability-mysql-cookbook-the-review</link>
		<comments>http://www.krisbuytaert.be/blog/high-availability-mysql-cookbook-review#comments</comments>
		<pubDate>Wed, 03 Nov 2010 23:07:18 +0000</pubDate>
		<dc:creator>Kris Buytaert</dc:creator>
				<category><![CDATA[cobbler]]></category>
		<category><![CDATA[drbd]]></category>
		<category><![CDATA[HA]]></category>
		<category><![CDATA[Heartbeat]]></category>
		<category><![CDATA[linux-ha]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Pacemaker]]></category>
		<category><![CDATA[Puppet]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[When I read on the internetz that Alex Davies was about the publish a Packt book on MySQL HA  I pinged my contacts at Packt and suggested that I'd review the book .
I've ran into Alex at some UKUUG conferences before and he's got a solid background on MySQL Cluster and other HA alternatives so I was looking forward to reading the book.
Alex starts of with a couple of indepth chapters on MySQL Cluster,  he does mention that it's not a fit for all problems, but I'd hoped he did it a bit more prominently ...    an upfront chapter outlining the different approaches and when which approach is a match could have been better.    The avid reader now might be 80 pages into MySQL cluster before he realizes it's not going to be a match for his problem.
I really loved the part where Alex correcly mentions that you should probably be using Puppet or so to manage the config files of your environment, rather than scp them around your different boxes ..
Alex then goes on to describe setting up MySQL replication and Multi Master replicataion with the different approaches one can take here,  he gives some nice tips on using LVM to reduce the downtime of your MySQL when having to transfer the dataset of an already existing MySQL setup, good stuff.
He then goes on to describe MySQL with shared storage ...   if you only mount your redundant sandisk once on your MySQL nodes my preference would probably be a Pacemaker stack  rather than a RedHat Cluster based setup,  but his setup seems to work too.   Alex quickly touches on using GFS to have your data disk mounted simultaneously on both nodes (keep in mind with only 1 active MySQLd)  and then goes on to describe a full DRBD based MySQL HA setup
The last chapter titled Performance tuning gives some very nice tips on both tuning your regular storae, as your
GFS setup but also the tuning parameters for MySQL Cluster
I was also really happy to see the Appendixes on the basic installation where he advocates the use of Cobbler , Kickstart and LVM ..
One of the better books I read the past couple of years .. certainly the best book from Packt so far , I hope there is more quality stuff coming from that direction !
Technorati Tags: cobbler drbd ha heartbeat linux-ha mysql pacemaker puppet  Share with Shareomatic! 



  Trackback URL for this post:

  http://www.krisbuytaert.be/blog/trackback/1022

]]></description>
			<content:encoded><![CDATA[<p>When I read on the internetz that Alex Davies was about the publish a <a href="https://www.packtpub.com/high-availability-mysql-cookbook/book" rel="nofollow">Packt book on MySQL HA</a>  I pinged my contacts at Packt and suggested that I'd review the book .</p>
<p>I've ran into <a href="https://sites.google.com/a/davz.net/alex-davies/" rel="nofollow">Alex</a> at some UKUUG conferences before and he's got a solid background on MySQL Cluster and other HA alternatives so I was looking forward to reading the book.</p>
<p>Alex starts of with a couple of indepth chapters on MySQL Cluster,  he does mention that it's not a fit for all problems, but I'd hoped he did it a bit more prominently ...    an upfront chapter outlining the different approaches and when which approach is a match could have been better.    The avid reader now might be 80 pages into MySQL cluster before he realizes it's not going to be a match for his problem.</p>
<p>I really loved the part where Alex correcly mentions that you should probably be using Puppet or so to manage the config files of your environment, rather than scp them around your different boxes ..</p>
<p>Alex then goes on to describe setting up MySQL replication and Multi Master replicataion with the different approaches one can take here,  he gives some nice tips on using LVM to reduce the downtime of your MySQL when having to transfer the dataset of an already existing MySQL setup, good stuff.</p>
<p>He then goes on to describe MySQL with shared storage ...   if you only mount your redundant sandisk once on your MySQL nodes my preference would probably be a Pacemaker stack  rather than a RedHat Cluster based setup,  but his setup seems to work too.   Alex quickly touches on using GFS to have your data disk mounted simultaneously on both nodes (keep in mind with only 1 active MySQLd)  and then goes on to describe a full DRBD based MySQL HA setup</p>
<p>The last chapter titled Performance tuning gives some very nice tips on both tuning your regular storae, as your<br />
GFS setup but also the tuning parameters for MySQL Cluster</p>
<p>I was also really happy to see the Appendixes on the basic installation where he advocates the use of Cobbler , Kickstart and LVM ..</p>
<p>One of the better books I read the past couple of years .. certainly the best book from Packt so far , I hope there is more quality stuff coming from that direction !</p>
<div><img alt="Technorati Tags:" src="http://www.krisbuytaert.be/blog/sites/all/modules/technorati/technobubble.gif" /><strong>Technorati Tags: </strong><a href="http://technorati.com/tag/cobbler" rel="tag">cobbler</a> <a href="http://technorati.com/tag/drbd" rel="tag">drbd</a> <a href="http://technorati.com/tag/ha" rel="tag">ha</a> <a href="http://technorati.com/tag/heartbeat" rel="tag">heartbeat</a> <a href="http://technorati.com/tag/linux-ha" rel="tag">linux-ha</a> <a href="http://technorati.com/tag/mysql" rel="tag">mysql</a> <a href="http://technorati.com/tag/pacemaker" rel="tag">pacemaker</a> <a href="http://technorati.com/tag/puppet" rel="tag">puppet</a></div><div> <a href="http://www.shareomatic.com/http%3A//www.krisbuytaert.be/blog/high-availability-mysql-cookbook-review/shareomatic-drupal/High%20Availability%20MySQL%20Cookbook%20,%20the%20review"><img src="http://www.shareomatic.com/images/s_16_black.gif" alt="Share with Shareomatic!" title="Post this item on various social news sites with Shareomatic!" /></a> <a href="http://www.shareomatic.com/http%3A//www.krisbuytaert.be/blog/high-availability-mysql-cookbook-review/shareomatic-drupal/High%20Availability%20MySQL%20Cookbook%20,%20the%20review">Share with Shareomatic!</a> </div>
<!--
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="http://www.krisbuytaert.be/blog/high-availability-mysql-cookbook-review" dc:identifier="http://www.krisbuytaert.be/blog/high-availability-mysql-cookbook-review" dc:title="High Availability MySQL Cookbook , the review" trackback:ping="http://www.krisbuytaert.be/blog/trackback/1022" />
</rdf:RDF>
-->
<div><div>

  <h3>Trackback URL for this post:</h3>

  <div>http://www.krisbuytaert.be/blog/trackback/1022</div>
</div>
</div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=26368&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=26368&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2010/11/04/high-availability-mysql-cookbook-the-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Open Administration Days 2010</title>
		<link>http://www.krisbuytaert.be/blog/linux-open-administration-days-2010?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=linux-open-administration-days-2010</link>
		<comments>http://www.krisbuytaert.be/blog/linux-open-administration-days-2010#comments</comments>
		<pubDate>Tue, 20 Apr 2010 19:43:05 +0000</pubDate>
		<dc:creator>Kris Buytaert</dc:creator>
				<category><![CDATA[Cfengine]]></category>
		<category><![CDATA[Chef]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[devops]]></category>
		<category><![CDATA[HA]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[loadays]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql ha]]></category>
		<category><![CDATA[Puppet]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[So about 4 monts ago there was the crazy idea to start a new FOSS event in Belgium targeted  at sysadmins.
What started out as an event for local people to meet local people with some local speakers actually ended up being a small local event with some top international speakers on onfiguration mananagement and system administration mixed with a bunch of good local ones !
I had the honour to open the conference with an extremely short version of the Devops talk I gave earlier last year..  extremely short as I knew that over the course of the weekend the topic would reoccur a lot.
We had the first european talk on Chef, by Joshua Timberman,  and we had Puppet talks amongst by Dan Bode from Puppetlabs and CFengine talks ,  devops was a frequently dropped word,
We had a book raffle where we handed out O'Reilly's .. we had a great free pizza party (got the idea from the saturday pizza event at LCA 2005) ,  and we had some free beer.      Sounds like a good combination for a geeky weekend.
Apart from the regular talks there were plenty of Open Spaces where interesting topics were discussed ... we had spaces on Open Source vs Open Core , strong voices were heard when we discussed what we should do with the Open Core companies that claim to value Open Source , some people think we should actually list the fauxpensource ones somewhere and make sure the world knows about them
We had an awesome configuration management discussion session  discussing Chef vs Puppet vs CFengine . And much much more ...
Some people owe me plenty of Sushi as I had to do my MySQL HA talk before their Managing MySQL talk  , but other than that .. things just went fine..
Technorati Tags: cfengine chef conference devops ha load loadays mysql mysql ha puppet  Share with Shareomatic! 



  Trackback URL for this post:

  http://www.krisbuytaert.be/blog/trackback/998

]]></description>
			<content:encoded><![CDATA[<p>So about 4 monts ago <a href="http://blog.bdesmet.be/?p=272">there was the crazy idea</a> to start a new FOSS event in Belgium targeted  at sysadmins.</p>
<p>What started out as an event for local people to meet local people with some local speakers actually ended up being a small local event with some top international speakers on onfiguration mananagement and system administration mixed with a bunch of good local ones !</p>
<p>I had the honour to open the conference with an extremely short version of the Devops talk I gave earlier last year..  extremely short as I knew that over the course of the weekend the topic would reoccur a lot.</p>
<p>We had the first european talk on <a href="http://wiki.opscode.com/display/chef/Home">Chef</a>, by Joshua Timberman,  and we had Puppet talks amongst by Dan Bode from Puppetlabs and CFengine talks ,  devops was a frequently dropped word,</p>
<p>We had a book raffle where we handed out O'Reilly's .. we had a great free pizza party (got the idea from the saturday pizza event at LCA 2005) ,  and we had some free beer.      Sounds like a good combination for a geeky weekend.</p>
<p>Apart from the regular talks there were plenty of Open Spaces where interesting topics were discussed ... we had spaces on Open Source vs Open Core , strong voices were heard when we discussed what we should do with the Open Core companies that claim to value Open Source , some people think we should actually list the fauxpensource ones somewhere and make sure the world knows about them</p>
<p>We had an awesome configuration management discussion session  discussing Chef vs Puppet vs CFengine . And much much more ...</p>
<p>Some people owe me plenty of Sushi as I had to do my MySQL HA talk before their Managing MySQL talk  , but other than that .. things just went fine..</p>
<div><img alt="Technorati Tags:" src="http://www.krisbuytaert.be/blog/sites/all/modules/technorati/technobubble.gif" /><strong>Technorati Tags: </strong><a href="http://technorati.com/tag/cfengine" rel="tag">cfengine</a> <a href="http://technorati.com/tag/chef" rel="tag">chef</a> <a href="http://technorati.com/tag/conference" rel="tag">conference</a> <a href="http://technorati.com/tag/devops" rel="tag">devops</a> <a href="http://technorati.com/tag/ha" rel="tag">ha</a> <a href="http://technorati.com/tag/load" rel="tag">load</a> <a href="http://technorati.com/tag/loadays" rel="tag">loadays</a> <a href="http://technorati.com/tag/mysql" rel="tag">mysql</a> <a href="http://technorati.com/tag/mysql+ha" rel="tag">mysql ha</a> <a href="http://technorati.com/tag/puppet" rel="tag">puppet</a></div><div> <a href="http://www.shareomatic.com/http%3A//www.krisbuytaert.be/blog/linux-open-administration-days-2010/shareomatic-drupal/Linux%20Open%20Administration%20Days%202010"><img src="http://www.shareomatic.com/images/s_16_black.gif" alt="Share with Shareomatic!" title="Post this item on various social news sites with Shareomatic!" /></a> <a href="http://www.shareomatic.com/http%3A//www.krisbuytaert.be/blog/linux-open-administration-days-2010/shareomatic-drupal/Linux%20Open%20Administration%20Days%202010">Share with Shareomatic!</a> </div>
<!--
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="http://www.krisbuytaert.be/blog/linux-open-administration-days-2010" dc:identifier="http://www.krisbuytaert.be/blog/linux-open-administration-days-2010" dc:title="Linux Open Administration Days 2010" trackback:ping="http://www.krisbuytaert.be/blog/trackback/998" />
</rdf:RDF>
-->
<div><div>

  <h3>Trackback URL for this post:</h3>

  <div>http://www.krisbuytaert.be/blog/trackback/998</div>
</div>
</div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=24444&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=24444&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2010/04/20/linux-open-administration-days-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UKUUG Spring Conference 2010</title>
		<link>http://www.krisbuytaert.be/blog/ukuug-spring-conference-2010?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ukuug-spring-conference-2010</link>
		<comments>http://www.krisbuytaert.be/blog/ukuug-spring-conference-2010#comments</comments>
		<pubDate>Wed, 07 Apr 2010 17:16:20 +0000</pubDate>
		<dc:creator>Kris Buytaert</dc:creator>
				<category><![CDATA[conference]]></category>
		<category><![CDATA[devops]]></category>
		<category><![CDATA[HA]]></category>
		<category><![CDATA[linux-ha]]></category>
		<category><![CDATA[manchester]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Puppet]]></category>
		<category><![CDATA[simon]]></category>
		<category><![CDATA[ukuug]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Last week I was in Manchester for the 2010 UKUUG Spring Conference, right .. make that 2 weeks ago , :) 
The UKUUG usually hosts the more interesting conferences around ... , it's not just the schedule that attrackts me , yes there's the strong focus towards Larger Scale Unix (and mostly Linux) deployments and how to manage them, but there's also the opportunity to chat in real life with the Devops from across the chunnel.
Spending time with R.I.Pienaar, Julian Simpson,  Simon Wilkinson , Alex Davies , Simon Riggs , Josette, and many others is always fun .
As I was in town early I went to the preconference beer meetup and met with a lot of people and chatted about config management, virtualization   and lots of other stuff ...  after the pub the plan was to go for curries nearby .. and while walking to the , ahem  Bus stop, I managed to recognise Ben Martin from meeting him back ages ago in Hamburg for LinuxKongress , always fun ..
Apart from having to jump on a bus and our group being split at the curry place , rather than being able to tell the latecomers where to walk to and being seeted upstairs with the whole group , the curries were interesting and fun.
As I had been pushing Simon Wardley on Twitter to submit a talk for the conference it was really great to finally see him present ..  His talk was the perfect soft introduction to the conference ...
Simon's talk  was followed   by a talk on Security for the virtual datacenters,  after I questionned the speaker  if anyone actualy uses TPM outside an academic lab the talk suddenly changed into a commercial presentation for a Quack, nuff said.
The Ever energetic Matt S Trout talked about 21st century perl before Simon "Life is to short for SELinux" Wilkinson talked about his experiences in getting the openAFS crowd  on Git.
Bummer Thierry Carrez didn't show us the real juice of UEC and just the installations of  a Cloud Controller and a Node Controller , but he managed to do so in approx 30 minutes as promised .
A talk titled Coherent and Integrated Configuration of Virtual Infrastructures always cathces my eye.. however when that talk turns out to be a Coherent and Integrated configuration only within the Univerity of Edinborough  (aka lcfg2) talk I`m dissapointed,  specially since it pretty  much didn't introduce any new concepts from the ones I introduced back in  my Durham UKUUG presentation
Luckily Andrew Stribblehill gave a very interesting talk on MySQL scalability,  in which I promised him some answers to his questions for the next day :)
The Conference dinner was without a doubt the best UKUUG dinner so far ,  no typical english "food",  no weird location (Old Trafford, an abandoned warship) , but just a big chinese place and plenty of food !
I started thurday morning in the wrong track,  I assumed to be in the Virtualization track, but I ended up in the Sun thinclient and Abusing Linux to serve weird desktops under the Green computing umbrella track, not my favourites ..
When Patrick and Julian started their Hudson hit my Puppet with a Cucumber talk (which featured some aweseom #devops content) I was a afraid that we'd had to look for a replacment PostgreSQL talk as Simon hadn't arrived yet ..  Luckily he arrived in time for his presentation and he explained us about the new replication features that are slowly making it into PostgreSQL,   one way ... log shipping ...  not really up to par with other alternatives yet :(
So with no further ado .. here's the presentation I gave
MySQL HA with  PaceMaker
View more presentations from Kris Buytaert.

PS.  If at a Ukuug event and not sure about a person's name ... try Simon.. pretty good chance you're correct :)
Technorati Tags: conference devops ha linux-ha manchester mysql puppet simon ukuug  Share with Shareomatic! 



  Trackback URL for this post:

  http://www.krisbuytaert.be/blog/trackback/997

]]></description>
			<content:encoded><![CDATA[<p>Last week I was in Manchester for the 2010 UKUUG Spring Conference, right .. make that 2 weeks ago , :) </p>
<p>The UKUUG usually hosts the more interesting conferences around ... , it's not just the schedule that attrackts me , yes there's the strong focus towards Larger Scale Unix (and mostly Linux) deployments and how to manage them, but there's also the opportunity to chat in real life with the Devops from across the chunnel.</p>
<p>Spending time with <a href="http://www.devco.net/">R.I.Pienaar</a>, <a href="http://www.build-doctor.com/2010/03/26/ukuug-spring-conference-2010/">Julian Simpson</a>,  <a href="http://twitter.com/simonxwilkinson">Simon Wilkinson</a> , <a href="https://sites.google.com/a/davz.net/alex-davies/">Alex Davies</a> , <a href="http://database-explorer.blogspot.com/">Simon Riggs</a> , Josette, and many others is always fun .</p>
<p>As I was in town early I went to the preconference beer meetup and met with a lot of people and chatted about config management, virtualization   and lots of other stuff ...  after the pub the plan was to go for curries nearby .. and while walking to the , ahem  Bus stop, I managed to recognise <a href="http://monkeyiq.blogspot.com/">Ben Martin</a> from meeting him back ages ago in Hamburg for LinuxKongress , always fun ..</p>
<p>Apart from having to jump on a bus and our group being split at the curry place , rather than being able to tell the latecomers where to walk to and being seeted upstairs with the whole group , the curries were interesting and fun.</p>
<p>As I had been pushing <a href="http://blog.gardeviance.org/">Simon Wardley</a> on Twitter to submit a talk for the conference it was really great to finally see him present ..  His talk was the perfect soft introduction to the conference ...</p>
<p>Simon's talk  was followed   by a talk on Security for the virtual datacenters,  after I questionned the speaker  if anyone actualy uses TPM outside an academic lab the talk suddenly changed into a commercial presentation for a Quack, nuff said.</p>
<p>The Ever energetic <a href="http://www.shadowcat.co.uk/blog/matt-s-trout/">Matt S Trout</a> talked about 21st century perl before Simon "Life is to short for SELinux" Wilkinson talked about his experiences in getting the openAFS crowd  on Git.</p>
<p>Bummer Thierry Carrez didn't show us the real juice of UEC and just the installations of  a Cloud Controller and a Node Controller , but he managed to do so in approx 30 minutes as promised .</p>
<p>A talk titled Coherent and Integrated Configuration of Virtual Infrastructures always cathces my eye.. however when that talk turns out to be a Coherent and Integrated configuration only within the Univerity of Edinborough  (aka lcfg2) talk I`m dissapointed,  specially since it pretty  much didn't introduce any new concepts from the ones I introduced back in  my Durham UKUUG presentation</p>
<p>Luckily Andrew Stribblehill gave a very interesting talk on MySQL scalability,  in which I promised him some answers to his questions for the next day :)</p>
<p>The Conference dinner was without a doubt the best UKUUG dinner so far ,  no typical english "food",  no weird location (Old Trafford, an abandoned warship) , but just a big chinese place and plenty of food !</p>
<p>I started thurday morning in the wrong track,  I assumed to be in the Virtualization track, but I ended up in the Sun thinclient and Abusing Linux to serve weird desktops under the Green computing umbrella track, not my favourites ..</p>
<p>When Patrick and Julian started their Hudson hit my Puppet with a Cucumber talk (which featured some aweseom #devops content) I was a afraid that we'd had to look for a replacment PostgreSQL talk as Simon hadn't arrived yet ..  Luckily he arrived in time for his presentation and he explained us about the new replication features that are slowly making it into PostgreSQL,   one way ... log shipping ...  not really up to par with other alternatives yet :(</p>
<p>So with no further ado .. here's the presentation I gave</p>
<div><strong><a href="http://www.slideshare.net/KrisBuytaert/mysql-ha-with-pacemaker" title="MySQL HA with  PaceMaker">MySQL HA with  PaceMaker</a></strong>
<div>View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/KrisBuytaert">Kris Buytaert</a>.</div>
</div>
<p>PS.  If at a Ukuug event and not sure about a person's name ... try Simon.. pretty good chance you're correct :)</p>
<div><img alt="Technorati Tags:" src="http://www.krisbuytaert.be/blog/sites/all/modules/technorati/technobubble.gif" /><strong>Technorati Tags: </strong><a href="http://technorati.com/tag/conference" rel="tag">conference</a> <a href="http://technorati.com/tag/devops" rel="tag">devops</a> <a href="http://technorati.com/tag/ha" rel="tag">ha</a> <a href="http://technorati.com/tag/linux-ha" rel="tag">linux-ha</a> <a href="http://technorati.com/tag/manchester" rel="tag">manchester</a> <a href="http://technorati.com/tag/mysql" rel="tag">mysql</a> <a href="http://technorati.com/tag/puppet" rel="tag">puppet</a> <a href="http://technorati.com/tag/simon" rel="tag">simon</a> <a href="http://technorati.com/tag/ukuug" rel="tag">ukuug</a></div><div> <a href="http://www.shareomatic.com/http%3A//www.krisbuytaert.be/blog/ukuug-spring-conference-2010/shareomatic-drupal/UKUUG%20Spring%20Conference%202010"><img src="http://www.shareomatic.com/images/s_16_black.gif" alt="Share with Shareomatic!" title="Post this item on various social news sites with Shareomatic!" /></a> <a href="http://www.shareomatic.com/http%3A//www.krisbuytaert.be/blog/ukuug-spring-conference-2010/shareomatic-drupal/UKUUG%20Spring%20Conference%202010">Share with Shareomatic!</a> </div>
<!--
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="http://www.krisbuytaert.be/blog/ukuug-spring-conference-2010" dc:identifier="http://www.krisbuytaert.be/blog/ukuug-spring-conference-2010" dc:title="UKUUG Spring Conference 2010" trackback:ping="http://www.krisbuytaert.be/blog/trackback/997" />
</rdf:RDF>
-->
<div><div>

  <h3>Trackback URL for this post:</h3>

  <div>http://www.krisbuytaert.be/blog/trackback/997</div>
</div>
</div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=24223&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=24223&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2010/04/07/ukuug-spring-conference-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eleven Open Source Cloud Computing Projects to Watch</title>
		<link>http://feedproxy.google.com/~r/SocializedSoftware/~3/AfMmX1SLF88/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eleven-open-source-cloud-computing-projects-to-watch</link>
		<comments>http://feedproxy.google.com/~r/SocializedSoftware/~3/AfMmX1SLF88/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 18:13:38 +0000</pubDate>
		<dc:creator>Mark Hinkle</dc:creator>
				<category><![CDATA[Chef]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[collectd]]></category>
		<category><![CDATA[Enomaly]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[LinuxToday]]></category>
		<category><![CDATA[LinuxWorld]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenNebula]]></category>
		<category><![CDATA[openqrm]]></category>
		<category><![CDATA[Puppet]]></category>
		<category><![CDATA[RabbitMQ]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Sys-Admin]]></category>
		<category><![CDATA[Systems Management]]></category>
		<category><![CDATA[systems managment]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Zenoss]]></category>

		<guid isPermaLink="false">http://socializedsoftware.com/?p=783</guid>
		<description><![CDATA[Last month cloud computing and systems management expert John Willis published his best of Cloud Computing for 2009 list he calls the Cloudies.  I am not an expert on the latest developments in cloud computing so it was nice to get a list of the best (in his expert opinion) cloud computing tools. I was especially interested in the latest open source software and I did a little research on each of these projects to see if they had active development mailing lists, regular releases  and a real community behind them.  At first glance my final list read like a cast of manga characters with names like Bitnami, CollectD, Enomaly, OpenNebula, RabbitMQ and Zenoss. However they all seem to benefit from a strong development ethic, a growing community of users and the ability to address challenges associated with cloud computing.

Chef &#8211; Chef  is a relative newcomer with their project being only one year old but they are aggressively developing their project as can be seen by the frequency of their code check-ins. is an integration framework for configuration management for all types of IT infrastructure but especially popular among cloud deployments. You write source code to describe how you want each part of your infrastructure to be built, then apply those descriptions to your servers. The result is a fully automated infrastructure. Chef is professionally supported and sponsored by Opscode.
collectd &#8211; collectd is a               daemon which collects system               performance statistics store the values in a variety of ways, one implementation is to store them in               RRD files. What makes collectd particularly useful is it&#8217;s plugin architecture which allow the daemon to collect information from a variety of services and servers like Apache, memcache and Linux Vserver. collectd on its own is really interesting but what I really see is an opportunity for collectd to feed other systems management tools.
Eucalyptus - Eculyptus is an acronym for Elastic Utility Computing Architecture Linking Your Programs To Useful Systems, an open-source software infrastructure for implementing &#8220;cloud computing&#8221; on clusters.   The current interface to Eucalyptus is compatible with Amazon&#8217;s EC2, S3, and EBS interfaces, but the infrastructure is designed to support multiple client-side interfaces.  Eucalyptus is implemented using commonly available Linux tools and basic Web-service technologies making it easy to install and maintain. Eucalyptus Systems provides consulting, training and support services.
OpenNebula &#8211; This is perhaps the most interesting and most relevant project of the list for cloud computing, billing itself as the open source tool kit for cloud computing.  OpenNebula is a tool that can be used  to build any type of Cloud deployment  and manage virtual infrastructure in a data-center or cluster or to combine local infrastructure with public cloud-based infrastructure, for highly scalable hosting environments. OpenNebula also supports public clouds by providing cloud interfaces to expose its functionality for virtual machine, storage and network management.
OpenQRM &#8211; I have been a fan of OpenQRM for a long-time or at least well before the hoopla around Cloud Computing and have had the opportunity to work with technology when it was still part of a now defunct venture-backed company, Qlusters, and then spun out as a stand-alone open source project. While OpenQRM is not what I would consider a tool for public clouds I think it&#8217;s geared towards people delivering private virtual clusters or cloud capabilities.  openQRM is a single-management console for the complete IT infrastructure and provides a well defined API which can be used to integrate third-party tools as additional plugins. What&#8217;s really interesting about OpenQRM is that it can suck up physical installations, create an image, write that image to a SAN and then run the virtual instances on demand.  I think the opportunity for OpenQRM is to be able to suck those images up and then spit them out to cloud computing resources like EC2, RightScale or Rackspace Cloud.
Puppet &#8211; The Ruby on Rails project is a great configuration management tool, very similar to Cfengine (which pre-dates Puppet) and Chef (which was started after Puppet). Puppet is a model-driven open source framework designed to automate the building and configuration of servers. Puppet lets you perform normal administrative tasks (such as adding users, installing packages, and updating server configurations) on any number of systems, using essentially the same code, even if those systems are running completely different operating systems.
RabbitMQ &#8211; RabbitMQ is an enterprise messaging system released under the Mozilla public license that adhere&#8217;s to the AMQP standard (AMQP is a standard that allows middleware products to send messages to one another). What really strikes me about RabbitMQ is the activity in their community especially their mailing lists and IRC channels. This was astounding to me as I feel like I am pretty up-to-date on active open source projects but before John&#8217;s post I was in the dark about RabbitMQ. Of the ones listed so far it&#8217;s really one that I feel like there&#8217;s really something substantial there. Commercial support is available from RabbitMQ LTD.
Zenoss -  Zenoss made John&#8217;s list because of it&#8217;s Amazon Web Services monitoring capabilities and its ability to monitor all sorts of other cloud and virtual infrastructure. I am also excited about Zenoss making the list because the Zenoss Community is working to extend Zenoss Core to monitor all infrastructure you already have. I am very excited about the future of Zenoss as the community continues to expand its virtualization and cloud computing capabilities.
[Disclosure: This caught my eye since I am the community guy for Zenoss.]


I also think there are a couple of other projects that weren&#8217;t on John&#8217;s list but have both an open source and cloud computing component:

Bitnami &#8211; BitNami.org simplifies the process of deploying web applications virtually and in the cloud. Each BitNami Stack contains an application that is fully integrated with all of the software it requires to run. BitNami Stacks are available free of charge as native installers, virtual machine images and cloud templates. Examples of BitNami-packaged applications include Drupal, Joomla!, Wordpress, SugarCRM, Alfresco, Redmine, Subversion and many more. Bitnami is sponsored by the cross-platform installer vendors, Bitrock.
Enomaly&#8217;s Elastic Computing Platform (ECP) -  ECP is worth watching is as much for its firebrand leader Reuven Cohen and his expertise as it for the merits of the project . ECP is a programmable virtual cloud infrastructure for small, medium and large businesses. ECP can help you design, deploy and manage virtual applications in the cloud and in the process significantly reduce administrative and systems workload. Our browser-based dashboard enables IT personnel to simply and efficiently plan deployments, automate VM scaling and load-balancing, and analyze, configure and optimize cloud capacity in an easy to use utility. We&#8217;ve designed the ECP platform to work alongside your current virtual data center, providing additional value and cost savings.
Ubuntu Enterprise Cloud &#8211; Ubuntu Enterprise Cloud (UEC) is included with Ubuntu Server Edition and integrates a number of open source projects (including Eucalyptus). Given the rabid Ubuntu fan base I think the UEC will immediately benefit. This gives users a turnkey package to deploy a private cloud. I also liked the he code name for Ubuntu 9.10 the latest release was Karmic Koala and as we all know Koala&#8217;s eat Eucalyptus (a clever little joke from the Canonical folks who develop Ubuntu).

I am sure there are other notable open source cloud computing solutions and tools that I haven&#8217;t mentioned and hope to add to this list going forward.
Related Articles


Open Source Meets Cloud Computing (Information Week Government Blog)
Lowering the barrier to open source (NASA Nebula Blog)
Forecast for 2010: The Rise of Hybrid Clouds (GigaOm)
Application packaging for cloud computing: A proposal (c&#124;net’s Wisdom of Clouds blog)
Cross-Platform Clouds Coming to Storage (MSP Mentor)





Technorati Tags: Chef, cloud computing, collectd, Enomaly, Open Source, OpenNebula, OpenQRM, Puppet, RabbitMQ, Ruby on Rails, Sys Admin, systems managment, Ubuntu, Zenoss



   
]]></description>
			<content:encoded><![CDATA[<p></p><div><a href="http://api.tweetmeme.com/share?url=http://socializedsoftware.com/2010/01/20/eleven-open-source-cloud-computing-projects-to-watch/"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://socializedsoftware.com/2010/01/20/eleven-open-source-cloud-computing-projects-to-watch/" height="61" width="51" /></a></div><p><a href="http://socializedsoftware.com/wp-content/uploads/2009/12/cloud_computing_2009.png"><img class="alignleft size-full wp-image-784" style="border: 0pt none; margin: 5px;" title="cloud_computing_2009" src="http://socializedsoftware.com/wp-content/uploads/2009/12/cloud_computing_2009.png" alt="Cloud Computing 2009" width="131" height="108" /></a>Last month cloud computing and systems management expert <a href="http://www.johnmwillis.com">John Willis</a> published his <a href="http://www.johnmwillis.com/other/the-2009-cloudies-awards/">best of Cloud Computing for 2009</a> list he calls <em>the Cloudies</em>.  I am not an expert on the latest developments in cloud computing so it was nice to get a list of the best (in his expert opinion) cloud computing tools. I was especially interested in the latest open source software and I did a little research on each of these projects to see if they had active development mailing lists, regular releases  and a real community behind them.  At first glance my final list read like a cast of manga characters with names like <a href="http://www.bitnami.org">Bitnami</a>, <a href="http://collectd.org/">CollectD</a>, <a href="http://src.enomaly.com/">Enomaly</a>, <a href="http://www.opennebula.org/">OpenNebula</a>, <a href="http://www.rabbitmq.com/">RabbitMQ</a> and <a href="http://community.zenoss.org">Zenoss</a>. However they all seem to benefit from a strong development ethic, a growing community of users and the ability to address challenges associated with cloud computing.</p>
<ul>
<li><a href="http://wiki.opscode.com/display/chef/Home"><strong>Chef</strong></a> &#8211; Chef  is a relative newcomer with their project being only one year old but they are aggressively developing their project as can be seen by the frequency of their <a href="http://github.com/opscode/chef/commits/master">code check-ins</a>. is an integration framework for configuration management for all types of IT infrastructure but especially popular among cloud deployments. You write source code to describe how you want each part of your infrastructure to be built, then apply those descriptions to your servers. The result is a fully automated infrastructure. Chef is professionally supported and sponsored by <a href="http://www.opscode.com">Opscode</a>.</li>
<li><a href="http://collectd.org/"><strong>collectd</strong></a> &#8211; <em>collectd</em> is a               daemon which collects system               performance statistics store the values in a variety of ways, one implementation is to store them in               <acronym title="Round Robin Database">RRD</acronym> files. What makes collectd particularly useful is it&#8217;s <a href="http://collectd.org/wiki/index.php/Plugin_architecture">plugin architecture</a> which allow the daemon to collect information from <a href="http://collectd.org/download.shtml">a variety of services and servers</a> like Apache, memcache and Linux Vserver. collectd on its own is really interesting but what I really see is an opportunity for collectd to feed other systems management tools.</li>
<li><a href="http://open.eucalyptus.com/"><strong>Eucalyptus</strong></a> -<strong> Eculyptus </strong>is an acronym for <strong>E</strong>lastic <strong>U</strong>tility <strong>C</strong>omputing <strong>A</strong>rchitecture <strong>L</strong>inking <strong>Y</strong>our <strong>P</strong>rograms <strong>T</strong>o <strong>U</strong>seful <strong>S</strong>ystems, an open-source software infrastructure for implementing &#8220;cloud computing&#8221; on clusters.   The current interface to Eucalyptus is compatible with Amazon&#8217;s EC2, S3, and EBS interfaces, but the infrastructure is designed to support multiple client-side interfaces.  Eucalyptus is implemented using commonly available Linux tools and basic Web-service technologies making it easy to install and maintain. Eucalyptus Systems provides <a href="http://www.eucalyptus.com/services/overview">consulting, training and support services</a>.</li>
<li><strong><a href="http://www.opennebula.org/">OpenNebula</a></strong> &#8211; This is perhaps the most interesting and most relevant project of the list for cloud computing, billing itself as the <em>open source tool kit for cloud computing</em>. <em> </em>OpenNebula is a tool that can be used  to build any type of Cloud deployment  and manage virtual infrastructure in a data-center or cluster or to combine local infrastructure with public cloud-based infrastructure, for highly scalable hosting environments. OpenNebula also supports public clouds by providing cloud interfaces to expose its functionality for virtual machine, storage and network management.</li>
<li><a href="http://www.openqrm.com/"><strong>OpenQRM</strong></a> &#8211; I have been a fan of OpenQRM for a long-time or at least well before the hoopla around Cloud Computing and have had the opportunity to work with technology when it was still part of a now defunct venture-backed company, <a href="http://virtualization.com/guest-posts/2008/07/01/qlusters-shuts-down/">Qlusters</a>, and then <a href="http://blogs.the451group.com/opensource/2008/04/10/qlusters-waves-goodbye-to-openqrm/">spun out</a> as a stand-alone open source project. While OpenQRM is not what I would consider a tool for public clouds I think it&#8217;s geared towards people delivering private virtual clusters or cloud capabilities.  openQRM is a single-management console for the complete IT infrastructure and provides a well defined API which can be used to integrate third-party tools as additional plugins. What&#8217;s really interesting about OpenQRM is that it can suck up physical installations, create an image, write that image to a SAN and then run the virtual instances on demand.  I think the opportunity for OpenQRM is to be able to suck those images up and then spit them out to cloud computing resources like EC2, RightScale or <a href="http://www.rackspacecloud.com/">Rackspace Cloud</a>.</li>
<li><strong><a href="http://reductivelabs.com/products/puppet/">Puppet</a></strong> &#8211; The Ruby on Rails project is a great configuration management tool, very similar to <a href="http://www.cfwiki.org/cfwiki/index.php/Main_Page">Cfengine</a> (which pre-dates Puppet) and <a href="http://www.opscode.com/chef/">Chef</a> (which was started after Puppet). Puppet is a model-driven open source framework designed to automate the building and configuration of servers. Puppet lets you perform normal administrative tasks (such as adding users, installing packages, and updating server configurations) on any number of systems, using essentially the same code, even if those systems are running completely different operating systems.</li>
<li><strong><a href="http://www.rabbitmq.com/">RabbitMQ</a></strong> &#8211; RabbitMQ is an enterprise messaging system released under the Mozilla public license that adhere&#8217;s to the <a href="http://www.amqp.org/confluence/display/AMQP/About+AMQP">AMQP standard</a> (AMQP is a standard that allows middleware products to send messages to one another). What really strikes me about RabbitMQ is the activity in their community especially their mailing lists and IRC channels. This was astounding to me as I feel like I am pretty up-to-date on active open source projects but before John&#8217;s post I was in the dark about RabbitMQ. Of the ones listed so far it&#8217;s really one that I feel like there&#8217;s really something substantial there. Commercial support is available from RabbitMQ LTD.</li>
<li><strong><a href="http://community.zenoss.org/index.jspa">Zenoss</a></strong> -  Zenoss made John&#8217;s list because of it&#8217;s <a href="http://community.zenoss.org/docs/DOC-4423">Amazon Web Services</a> monitoring capabilities and its ability to monitor all sorts of other cloud and virtual infrastructure. I am also excited about Zenoss making the list because the Zenoss Community is working to extend Zenoss Core to monitor all infrastructure you already have. I am very excited about the future of Zenoss as t<a href="http://community.zenoss.org/blogs/zenossblog/2009/10/26/zenoss-in-the-clouds-zenpack-contest">he community continues to expand its virtualization and cloud computing capabilities</a>.<br />
[Disclosure: This caught my eye since I am the community guy for <a href="http://www.zenoss.com">Zenoss</a>.]</li>
</ul>
<p><span></span></p>
<p>I also think there are a couple of other projects that weren&#8217;t on John&#8217;s list but have both an open source and cloud computing component:</p>
<ul>
<li><strong><a href="http://www.bitnami.org">Bitnami</a></strong> &#8211; BitNami.org simplifies the process of deploying web applications virtually and in the cloud. Each BitNami Stack contains an application that is fully integrated with all of the software it requires to run. BitNami Stacks are available free of charge as native installers, virtual machine images and cloud templates. Examples of BitNami-packaged applications include Drupal, Joomla!, Wordpress, SugarCRM, Alfresco, Redmine, Subversion and many more. Bitnami is sponsored by <a href="http://www.bitrock.com">the cross-platform installer vendors</a>, Bitrock.</li>
<li><strong><a href="http://src.enomaly.com/">Enomaly&#8217;s Elastic Computing Platform (ECP)</a></strong> -  ECP is worth watching is as much for its firebrand leader <a href="http://www.elasticvapor.com/">Reuven Cohen</a> and his expertise as it for the merits of the project . ECP is a programmable virtual cloud infrastructure for small, medium and large businesses. ECP can help you design, deploy and manage virtual applications in the cloud and in the process significantly reduce administrative and systems workload. Our browser-based dashboard enables IT personnel to simply and efficiently plan deployments, automate VM scaling and load-balancing, and analyze, configure and optimize cloud capacity in an easy to use utility. We&#8217;ve designed the ECP platform to work alongside your current virtual data center, providing additional value and cost savings.</li>
<li><a href="http://www.ubuntu.com/cloud"><strong>Ubuntu Enterprise Cloud</strong></a> &#8211; Ubuntu Enterprise Cloud (UEC) is included with Ubuntu Server Edition and integrates a number of open source projects (including Eucalyptus). Given the rabid Ubuntu fan base I think the UEC will immediately benefit. This gives users a turnkey package to deploy a private cloud. I also liked the he code name for Ubuntu 9.10 the latest release was Karmic Koala and as we all know Koala&#8217;s eat Eucalyptus (a clever little joke from the Canonical folks who develop Ubuntu).</li>
</ul>
<p>I am sure there are other notable open source cloud computing solutions and tools that I haven&#8217;t mentioned and hope to add to this list going forward.</p>
<h2><strong>Related Articles<br />
</strong></h2>
<ul>
<li><a href="http://www.informationweek.com/blog/main/archives/2010/01/open_source_clo.html;jsessionid=YEMQADRLROMENQE1GHPSKHWATMY32JVN">Open Source Meets Cloud Computing</a> (Information Week Government Blog)</li>
<li><a href="http://nebula.nasa.gov/blog/2009/nov/lowering-the-barrier-to-open-source/">Lowering the barrier to open source</a> (NASA Nebula Blog)</li>
<li><a href="http://gigaom.com/2010/01/01/on-the-rise-of-hybrid-clouds/">Forecast for 2010: The Rise of Hybrid Clouds</a> (GigaOm)</li>
<li><a href="http://news.cnet.com/8301-19413_3-10422517-240.html?part=rss&amp;subj=news&amp;tag=2547-1_3-0-20">Application packaging for cloud computing: A proposal</a> (c|net’s Wisdom of Clouds blog)</li>
<li><a href="http://www.mspmentor.net/2010/01/11/cross-platform-clouds-coming-to-storage/">Cross-Platform Clouds Coming to Storage</a> (MSP Mentor)</li>
</ul>
<div><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/ad99b246-1e7a-47f6-a7ed-5a794765c7b8/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=ad99b246-1e7a-47f6-a7ed-5a794765c7b8" alt="Reblog this post [with Zemanta]" /></a><span></span></div>

<!-- start wp-tags-to-technorati 1.01 -->

<p>Technorati Tags: <a href="http://technorati.com/tag/Chef" rel="tag" >Chef</a>, <a href="http://technorati.com/tag/cloud+computing" rel="tag" >cloud computing</a>, <a href="http://technorati.com/tag/collectd" rel="tag" >collectd</a>, <a href="http://technorati.com/tag/Enomaly" rel="tag" >Enomaly</a>, <a href="http://technorati.com/tag/Open+Source" rel="tag" >Open Source</a>, <a href="http://technorati.com/tag/OpenNebula" rel="tag" >OpenNebula</a>, <a href="http://technorati.com/tag/OpenQRM" rel="tag" >OpenQRM</a>, <a href="http://technorati.com/tag/Puppet" rel="tag" >Puppet</a>, <a href="http://technorati.com/tag/RabbitMQ" rel="tag" >RabbitMQ</a>, <a href="http://technorati.com/tag/Ruby+on+Rails" rel="tag" >Ruby on Rails</a>, <a href="http://technorati.com/tag/Sys+Admin" rel="tag" >Sys Admin</a>, <a href="http://technorati.com/tag/systems+managment" rel="tag" >systems managment</a>, <a href="http://technorati.com/tag/Ubuntu" rel="tag" >Ubuntu</a>, <a href="http://technorati.com/tag/Zenoss" rel="tag" >Zenoss</a></p>

<!-- end wp-tags-to-technorati -->
<img src="http://socializedsoftware.com/?ak_action=api_record_view&amp;id=783&amp;type=feed" alt="" /><div>
<a href="http://feeds.feedburner.com/~ff/SocializedSoftware?a=AfMmX1SLF88:nlXjBYEvtFw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SocializedSoftware?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SocializedSoftware?a=AfMmX1SLF88:nlXjBYEvtFw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SocializedSoftware?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SocializedSoftware?a=AfMmX1SLF88:nlXjBYEvtFw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SocializedSoftware?i=AfMmX1SLF88:nlXjBYEvtFw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SocializedSoftware?a=AfMmX1SLF88:nlXjBYEvtFw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SocializedSoftware?i=AfMmX1SLF88:nlXjBYEvtFw:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SocializedSoftware/~4/AfMmX1SLF88" height="1" width="1" /><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=23117&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=23117&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2010/01/20/eleven-open-source-cloud-computing-projects-to-watch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware,”Hey what ya’ building over there?”</title>
		<link>http://feedproxy.google.com/~r/SocializedSoftware/~3/ULBVqI5Lqz8/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware%25e2%2580%259dhey-what-ya%25e2%2580%2599-building-over-there%25e2%2580%259d</link>
		<comments>http://feedproxy.google.com/~r/SocializedSoftware/~3/ULBVqI5Lqz8/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 05:37:46 +0000</pubDate>
		<dc:creator>Mark Hinkle</dc:creator>
				<category><![CDATA[Cfengine]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[cloudera]]></category>
		<category><![CDATA[Covalent]]></category>
		<category><![CDATA[hyperic]]></category>
		<category><![CDATA[LinuxToday]]></category>
		<category><![CDATA[LinuxWorld]]></category>
		<category><![CDATA[MapReduce]]></category>
		<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Opscode]]></category>
		<category><![CDATA[Puppet]]></category>
		<category><![CDATA[reductive labs]]></category>
		<category><![CDATA[Spring Source]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[zimbra]]></category>

		<guid isPermaLink="false">http://socializedsoftware.com/?p=800</guid>
		<description><![CDATA[Today I caught a tweet from Kara Swisher referencing some exclusive news she posted on Boomtown about VMware&#8217;s upcoming deal to buy Zimbra from Yahoo! This is would be VMware&#8217;s second acquisition of an open source ISV in under a year. In August 2009 VMware acquired open source java vendor SpringSource that not only developed the popular Spring framework but had also acquired open source systems management vendor Hyperic (May 2009) and commercial Apache support vendor, Covalent (January 2009).
According to CNET&#8217;s Matt Asay, Yahoo!&#8217;s  Zimbra business unit is still growing and has an impressive customer base:
 
Lost in the news of Zimbra&#8217;s release of version 6.0 of its collaboration suite is the importance of one very big number: 50 million. That&#8217;s how many paid mailboxes Zimbra claims now, a number that puts it within spitting distance of IBM Lotus Notes (approximately 145 million paid mailboxes) and Microsoft Exchange (approximately 175 million paid mailboxes). Whatever the truth to rumors that Zimbra is up for sale, Zimbra is an appreciating asset for Yahoo, not a depreciating one.
I also noticed a couple of months ago that VMware started to re-brand getting rid of their old blue logo and moving to a grey logo sans the &#8220;virtualization boxes&#8221;. According to this post by VMware CMO Rick Jackson:
Now, as we look at our current offerings based on vSphere, and our vision of delivering the infrastructure for unrestrained cloud computing, the image we are portraying to the market has evolved.  In fact, our message embodies the notion of freeing IT from the constraints of physical resources.
Makes you wonder in the long-term where VMware might draw the line...

Build, Manage and Provide the Silver Lining for Clouds?
Does this signal the beginning of a broader VMware open source acquisition strategy? Maybe they will complete their java application stack with a database.  Barring Larry Ellison offering to sell MySQL to VMware maybe there are some other opportunities. VMware might benefit from picking up EnterpriseDB or maybe become the patron saint for MySQL fork, MariaDB sponsored by MySQL creator Monty Widenius. Beyond the database there are a number of interesting buying opportunities out there for VMware should they have their pocketbook open. For one there is rPath which can build and update Linux virtual machines and provide automated provisioning of systems taking VMware&#8217;s management and deployment capabilities one step further.
Another option would be to get deeper in management by picking up one of the open source configuration management vendors like Reductive Labs that produces Puppet or newly funded cloud configuration rival Opscode and their open source project, Chef. They could even go old school and take a look at CFengine which is similar to Chef and Puppet but supports not only Unix-like systems but Windows too. Alternatively, they could acquire commercial open source vendor, Cloudera that provides support for Hadoop, an open source implementation of  MapReduce which is ideally suited for cloud deployment.
I guess that&#8217;s enough speculation for today. However, it will be curious to see if the deal goes through and if VMware pays a premium over Yahoo!&#8217;s acquisition price of $350 million back in 2007. It could as The VarGuy notes it could trigger a reset for how open source companies are valued.
Related Articles

VMware Buying Zimbra &#8211; My Initial Thoughts (cloudave.com)
Yahoo to Unload E-mail Provider Zimbra on VMWare (mashable.com)
Yahoo! to offload Zimbra on&#8230;VMware? (theregister.co.uk)
Zimbra notches 100 percent growth (news.cnet.com)
Rumor: VMware Buying Zimbra Open Source Email? (thevarguy.com)




Technorati Tags: Cfengine, Cloudera, Covalent, Hyperic, MapReduce, MariaDB, Open Source, Opscode, Puppet, Reductive Labs, Spring Source, VMware, Zimbra



   
]]></description>
			<content:encoded><![CDATA[<p></p><div><a href="http://api.tweetmeme.com/share?url=http://socializedsoftware.com/2010/01/05/vmwarehey-what-you-building-over-there/"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://socializedsoftware.com/2010/01/05/vmwarehey-what-you-building-over-there/" height="61" width="51" /></a></div><p>Today I <a href="http://kara.allthingsd.com/20100104/exclusive-vmware-likely-to-buy-zimbra-from-yahoo/">caught a tweet</a> from Kara Swisher referencing some exclusive news she posted on Boomtown about <a href="http://kara.allthingsd.com/20100104/exclusive-vmware-likely-to-buy-zimbra-from-yahoo/">VMware&#8217;s upcoming deal</a> to buy <a href="http://www.zimbra.com/">Zimbra</a> from Yahoo! This is would be VMware&#8217;s second acquisition of an open source ISV in under a <a href="http://socializedsoftware.com/wp-content/uploads/2010/01/vmware-open-source.png"><img class="alignleft size-full wp-image-802" style="border: 0pt none; margin: 10px 15px;" title="vmware-open-source" src="http://socializedsoftware.com/wp-content/uploads/2010/01/vmware-open-source.png" alt="VMware Open Source Plan" width="250" height="195" /></a>year. In August 2009 <a href="http://blogs.the451group.com/opensource/2009/08/11/vmware-springsource-about-cloud-competition-open-source-in-that-order/">VMware acquired open source java vendor SpringSource</a> that not only developed the popular Spring framework but had also <a href="http://kara.allthingsd.com/20100104/exclusive-vmware-likely-to-buy-zimbra-from-yahoo/">acquired open source systems management vendor Hyperic</a> (May 2009) and <a href="http://blog.springsource.com/2008/01/29/some-decisions-are-easy-%E2%80%93-like-springsource-acquiring-covalent/">commercial Apache support vendor, Covalent</a> (January 2009).</p>
<p><a href="http://news.cnet.com/8301-13505_3-10364422-16.html">According to CNET&#8217;s Matt Asay</a>, Yahoo!&#8217;s  Zimbra business unit is still growing and has an impressive customer base:</p>
<p><!-- oid.editionId = 3--> <!-- postType = /none --></p>
<p><em>Lost <a href="http://news.google.com/news/story?cf=all&amp;ned=us&amp;hl=en&amp;ncl=dzSpvZTyCGiqEZMEqtnebD1g61GCM">in the news of Zimbra&#8217;s release of version 6.0</a> of its collaboration suite is the importance of one very big number: 50 million. That&#8217;s how many paid mailboxes <a href="http://www.businesswire.com/portal/site/google/?ndmViewId=news_view&amp;newsId=20090930005417&amp;newsLang=en">Zimbra claims now</a>, a number that puts it <a title="Lotus Notes swaps customers with Microsoft Exchange -- Saturday, Jan 17, 2009" href="http://news.cnet.com/8301-13505_3-10145045-16.html">within spitting distance</a> of IBM Lotus Notes (approximately 145 million paid mailboxes) and Microsoft Exchange (approximately 175 million paid mailboxes). Whatever the truth to rumors that Zimbra is up for sale, Zimbra is an appreciating asset for Yahoo, not a depreciating one.</em></p>
<p>I also noticed a couple of months ago that VMware started to re-brand getting rid of their old blue logo and moving to a grey logo sans the &#8220;virtualization boxes&#8221;. According to <a href="http://blogs.vmware.com/console/2009/11/where-did-the-boxes-go.html">this post by VMware CMO Rick Jackson</a>:</p>
<p><em>Now, as we look at our current offerings based on vSphere, and our vision of delivering the infrastructure for unrestrained cloud computing, the image we are portraying to the market has evolved.  In fact, our message embodies the notion of freeing IT from the <em>constraints</em> of physical resources.</em></p>
<p>Makes you wonder in the long-term where VMware might draw the line.<em>..<br />
</em></p>
<h2>Build, Manage and Provide the Silver Lining for Clouds?</h2>
<p>Does this signal the beginning of a broader VMware open source acquisition strategy? Maybe they will complete their java application stack with a database.  Barring Larry Ellison offering to sell MySQL to VMware maybe there are some other opportunities. VMware might benefit from picking up <a href="http://www.enterprisedb.com">EnterpriseDB</a> or maybe become the patron saint for MySQL fork, <a href="http://askmonty.org/wiki/index.php/MariaDB">MariaDB</a> sponsored by MySQL creator Monty Widenius. Beyond the database there are a number of interesting buying opportunities out there for VMware should they have their pocketbook open. For one there is <a href="http://www.rpath.com">rPath</a> which can build and update Linux virtual machines and provide automated provisioning of systems taking VMware&#8217;s management and deployment capabilities one step further.</p>
<p>Another option would be to get deeper in management by picking up one of the open source configuration management vendors like <a href="http://reductivelabs.com/">Reductive Labs</a> that produces <a href="http://reductivelabs.com/trac/puppet">Puppet</a> or newly funded cloud configuration rival <a href="http://www.opscode.com/">Opscode</a> and their open source project, <a href="http://www.opscode.com/chef/">Chef</a>. They could even go old school and take a look at <a href="http://www.cfengine.org/">CFengine</a> which is similar to Chef and Puppet but supports not only Unix-like systems but Windows too. Alternatively, they could acquire commercial open source vendor, <a href="http://www.cloudera.com/">Cloudera</a> that provides support for Hadoop, an open source implementation of  MapReduce which is ideally suited for cloud deployment.</p>
<p>I guess that&#8217;s enough speculation for today. However, it will be curious to see if the deal goes through and if VMware pays a premium over <a href="http://www.techcrunch.com/2007/09/17/breaking-yahoo-acquires-zimbra-for-350-million/">Yahoo!&#8217;s acquisition price of $350 million</a> back in 2007. It could as <a href="http://www.thevarguy.com/2010/01/04/rumor-vmware-buying-zimbra-open-source-email/">The VarGuy notes</a> it could <em>trigger a reset for how open source companies are valued.</em></p>
<p><strong>Related Articles</strong></p>
<ul>
<li><a href="http://www.cloudave.com/link/vmware-buying-zimbra-my-initial-thoughts">VMware Buying Zimbra &#8211; My Initial Thoughts</a> (cloudave.com)</li>
<li><a href="http://mashable.com/2010/01/04/vmware-buys-zimbra-from-yahoo/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%253A+Mashable+%2528Mashable%2529">Yahoo to Unload E-mail Provider Zimbra on VMWare</a> (mashable.com)</li>
<li><a href="http://www.theregister.co.uk/2010/01/04/vmware_zimbra_rumor/">Yahoo! to offload Zimbra on&#8230;VMware?</a> (theregister.co.uk)</li>
<li><a href="http://news.cnet.com/8301-13505_3-10364422-16.html?part=rss&amp;subj=news">Zimbra notches 100 percent growth</a> (news.cnet.com)</li>
<li><a title="Permanent Link to Rumor: VMware Buying Zimbra Open Source Email?" rel="bookmark" href="http://www.thevarguy.com/2010/01/04/rumor-vmware-buying-zimbra-open-source-email/">Rumor: VMware Buying Zimbra Open Source Email?</a> (thevarguy.com)</li>
</ul>

<!-- start wp-tags-to-technorati 1.01 -->

<p>Technorati Tags: <a href="http://technorati.com/tag/Cfengine" rel="tag" >Cfengine</a>, <a href="http://technorati.com/tag/Cloudera" rel="tag" >Cloudera</a>, <a href="http://technorati.com/tag/Covalent" rel="tag" >Covalent</a>, <a href="http://technorati.com/tag/Hyperic" rel="tag" >Hyperic</a>, <a href="http://technorati.com/tag/MapReduce" rel="tag" >MapReduce</a>, <a href="http://technorati.com/tag/MariaDB" rel="tag" >MariaDB</a>, <a href="http://technorati.com/tag/Open+Source" rel="tag" >Open Source</a>, <a href="http://technorati.com/tag/Opscode" rel="tag" >Opscode</a>, <a href="http://technorati.com/tag/Puppet" rel="tag" >Puppet</a>, <a href="http://technorati.com/tag/Reductive+Labs" rel="tag" >Reductive Labs</a>, <a href="http://technorati.com/tag/Spring+Source" rel="tag" >Spring Source</a>, <a href="http://technorati.com/tag/VMware" rel="tag" >VMware</a>, <a href="http://technorati.com/tag/Zimbra" rel="tag" >Zimbra</a></p>

<!-- end wp-tags-to-technorati -->
<img src="http://socializedsoftware.com/?ak_action=api_record_view&amp;id=800&amp;type=feed" alt="" /><div>
<a href="http://feeds.feedburner.com/~ff/SocializedSoftware?a=ULBVqI5Lqz8:NqqVp8qa3iQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SocializedSoftware?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SocializedSoftware?a=ULBVqI5Lqz8:NqqVp8qa3iQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SocializedSoftware?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SocializedSoftware?a=ULBVqI5Lqz8:NqqVp8qa3iQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SocializedSoftware?i=ULBVqI5Lqz8:NqqVp8qa3iQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SocializedSoftware?a=ULBVqI5Lqz8:NqqVp8qa3iQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SocializedSoftware?i=ULBVqI5Lqz8:NqqVp8qa3iQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SocializedSoftware/~4/ULBVqI5Lqz8" height="1" width="1" /><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=22887&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=22887&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2010/01/05/vmware%e2%80%9dhey-what-ya%e2%80%99-building-over-there%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAOS Theory Podcast 2009.09.04</title>
		<link>http://feedproxy.google.com/~r/451opensource/~3/_s-AYssx6zA/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=caos-theory-podcast-2009-09-04</link>
		<comments>http://feedproxy.google.com/~r/451opensource/~3/_s-AYssx6zA/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 23:01:54 +0000</pubDate>
		<dc:creator>The 451 Group</dc:creator>
				<category><![CDATA[451 group]]></category>
		<category><![CDATA[BSD]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Covalent]]></category>
		<category><![CDATA[debate]]></category>
		<category><![CDATA[EC]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[EPL]]></category>
		<category><![CDATA[european commission]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[hyperic]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[open source license]]></category>
		<category><![CDATA[open source licenses]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Puppet]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[reductive labs]]></category>
		<category><![CDATA[server automation]]></category>
		<category><![CDATA[springsource]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[Sun Microsyst]]></category>

		<guid isPermaLink="false">http://blogs.the451group.com/opensource/?p=1223</guid>
		<description><![CDATA[Topics for this podcast:
*EC pauses Oracle-Sun over MySQL
* Open source licenses debated
* Red Hat growth opportunities and Summit roundup
* Reductive Labs seeking cloud role for Puppet software
* VMware-SpringSource analyzed
iTunes or direct download (26:04, 5.9 MB)
]]></description>
			<content:encoded><![CDATA[<p>Topics for this podcast:</p>
<p>*EC pauses Oracle-Sun over MySQL<br />
* Open source licenses debated<br />
* Red Hat growth opportunities and Summit roundup<br />
* Reductive Labs seeking cloud role for Puppet software<br />
* VMware-SpringSource analyzed</p>
<p><a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=280595473">iTunes</a> or <a href="http://media.libsyn.com/media/caostheory/CAOSTheory20090904.mp3">direct download</a> (26:04, 5.9 MB)</p>
<img src="http://feeds.feedburner.com/~r/451opensource/~4/_s-AYssx6zA" height="1" width="1" /><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=20969&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=20969&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2009/09/05/caos-theory-podcast-2009-09-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://media.libsyn.com/media/caostheory/CAOSTheory20090904.mp3" length="6258103" type="audio/mpeg" />
		</item>
	</channel>
</rss>

