<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Glog &#187; sysadmin</title>
	<atom:link href="http://blog.aiama.com/category/ops/sysadmin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.aiama.com</link>
	<description></description>
	<lastBuildDate>Sat, 03 Dec 2011 06:25:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.aiama.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Glog &#187; sysadmin</title>
		<link>http://blog.aiama.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.aiama.com/osd.xml" title="Glog" />
	<atom:link rel='hub' href='http://blog.aiama.com/?pushpress=hub'/>
		<item>
		<title>NRPE and Solaris SMF</title>
		<link>http://blog.aiama.com/2011/09/07/nrpe-and-solaris-smf/</link>
		<comments>http://blog.aiama.com/2011/09/07/nrpe-and-solaris-smf/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 17:20:07 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[solaris]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[nrpe]]></category>
		<category><![CDATA[smf]]></category>

		<guid isPermaLink="false">http://blog.aiama.com/?p=208</guid>
		<description><![CDATA[NRPE running under Solaris SMF control. The SMF manifest: The associated method: Season to taste.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=208&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://exchange.nagios.org/directory/Addons/Monitoring-Agents/NRPE--2D-Nagios-Remote-Plugin-Executor/details" title="NRPE">NRPE</a> running under Solaris SMF control.</p>
<p>The SMF manifest:</p>
<p><pre class="brush: plain;">
&lt;?xml version='1.0'?&gt;
&lt;!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'&gt;
&lt;service_bundle type='manifest' name='export'&gt;
  &lt;service name='application/monitoring/nrpe' type='service' version='0'&gt;
    &lt;single_instance/&gt;
    &lt;dependency name='fs-local' grouping='require_all' restart_on='none' type='service'&gt;
      &lt;service_fmri value='svc:/system/filesystem/local'/&gt;
    &lt;/dependency&gt;
    &lt;dependency name='network-service' grouping='require_all' restart_on='none' type='service'&gt;
      &lt;service_fmri value='svc:/network/service'/&gt;
    &lt;/dependency&gt;
    &lt;dependency name='name-service' grouping='require_all' restart_on='none' type='service'&gt;
      &lt;service_fmri value='svc:/milestone/name-services'/&gt;
    &lt;/dependency&gt;
    &lt;instance name='default' enabled='true'&gt;
      &lt;dependency name='config-file' grouping='require_all' restart_on='refresh' type='path'&gt;
        &lt;service_fmri value='file://localhost/usr/local/etc/nrpe/nrpe.cfg'/&gt;
      &lt;/dependency&gt;
      &lt;exec_method name='start' type='method' exec='/local/lib/svc/method/nrpectl start' timeout_seconds='30'&gt;
        &lt;method_context working_directory='/var/tmp'&gt;
          &lt;method_credential user='nrpe' group='nrpe' privileges='basic,sys_resource,!proc_info,!file_link_any' limit_privileges='basic,sys_resource,!proc_info,!file_link_any'/&gt;
        &lt;/method_context&gt;
      &lt;/exec_method&gt;
      &lt;exec_method name='stop' type='method' exec=':kill' timeout_seconds='60'/&gt;
      &lt;exec_method name='refresh' type='method' exec='/local/lib/svc/method/nrpectl refresh' timeout_seconds='60'/&gt;
      &lt;property_group name='nrpectl' type='application'&gt;
        &lt;propval name='NRPE_CFG' type='astring' value='/usr/local/etc/nrpe/nrpe.cfg'/&gt;
        &lt;propval name='NRPE_FQB' type='astring' value='/usr/local/sbin/nrpe'/&gt;
      &lt;/property_group&gt;
    &lt;/instance&gt;
    &lt;template&gt;
      &lt;common_name&gt;
        &lt;loctext xml:lang='C'&gt;NRPE&lt;/loctext&gt;
      &lt;/common_name&gt;
      &lt;documentation&gt;
        &lt;doc_link name='nagios.org' uri='http://nagios.sourceforge.net/docs/nrpe/NRPE.pdf'/&gt;
      &lt;/documentation&gt;
    &lt;/template&gt;
  &lt;/service&gt;
&lt;/service_bundle&gt;
</pre></p>
<p>The associated method:</p>
<p><pre class="brush: plain;">
#!/bin/sh

. /lib/svc/share/smf_include.sh

NRPE_FQB=`svcprop -p nrpectl/NRPE_FQB $SMF_FMRI`
NRPE_BIN=`basename $NRPE_FQB`
NRPE_CFG=`svcprop -p nrpectl/NRPE_CFG $SMF_FMRI`

pid=`pgrep -x -d &quot; &quot; $NRPE_BIN`

case $1 in
   'start')   if [ -z &quot;$pid&quot; ]; then
                 smf_clear_env
                 $NRPE_FQB -c $NRPE_CFG -d &gt;&amp;2
                 if pgrep -x -d &quot; &quot; $NRPE_BIN &gt;/dev/null 2&gt;&amp;1; then
                    :
                 else
                    echo &quot;NRPE failed to start&quot; &gt;&amp;2
                    exit $SMF_EXIT_ERR_FATAL
                 fi
              else
                 echo &quot;NRPE already running (pid=$pid)&quot; &gt;&amp;2
                 exit $SMF_EXIT_ERR_OTHER
              fi
              ;;
   'refresh') if [ -z &quot;$pid&quot; ]; then
                 echo &quot;NRPE not running; nothing to refresh&quot; &gt;&amp;2
                 exit $SMF_EXIT_ERR_OTHER
              else
                 pkill -x $NRPE_BIN
              fi
              ;;
esac
exit $SMF_EXIT_OK
</pre></p>
<p>Season to taste.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=208&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2011/09/07/nrpe-and-solaris-smf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>
	</item>
		<item>
		<title>TimeMachine and Logged Out Users</title>
		<link>http://blog.aiama.com/2011/01/05/timemachine-and-logged-out-users/</link>
		<comments>http://blog.aiama.com/2011/01/05/timemachine-and-logged-out-users/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 17:09:28 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[macos]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[time machine]]></category>

		<guid isPermaLink="false">https://gerirgaudi.wordpress.com/?p=173</guid>
		<description><![CDATA[With the deployment of the MacMini3,1 as an important box, I wanted to have timely backups and easy recovery, and that is one thing Snow Leopard does rather well with TimeMachine. Attach a disk, configure as a TimeMachine destination, and done, right? Not exactly: I noticed that TimeMachine was only backing up the system if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=173&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With the <a href="http://blog.aiama.com/2011/01/04/macmini31-and-powerbook58/">deployment of the MacMini3,1</a> as an <strong>important</strong> box, I wanted to have timely backups and easy recovery, and that is one thing Snow Leopard does rather well with TimeMachine. Attach a disk, configure as a TimeMachine destination, and done, right? Not exactly: I noticed that TimeMachine was only backing up the system if there was a user logged in, something that&#8217;s rather rare on this box (in fact, there is generally no display or keyboard attached to it).</p>
<p>It turns out that this is <em>normal</em> behavior, as the system unmounts all external volumes when a user logs out, including TimeMachine volumes (this does not apply to network volumes, just volumes physically attached to the system). There are some edge cases that affect somewhat this behavior (such us when FileVault is in use), but it can be completely disabled:</p>
<p><pre class="brush: bash;">
defaults write /Library/Preferences/SystemConfiguration/autodiskmount \
     AutomountDisksWithoutUserLogin -bool true
</pre></p>
<p>I went ahead and rebooted the system. TimeMachine now works even when users are not logged in.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=173&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2011/01/05/timemachine-and-logged-out-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>
	</item>
		<item>
		<title>Macmini3,1 and PowerBook5,8</title>
		<link>http://blog.aiama.com/2011/01/04/macmini31-and-powerbook58/</link>
		<comments>http://blog.aiama.com/2011/01/04/macmini31-and-powerbook58/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 08:48:58 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[macos]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macports]]></category>

		<guid isPermaLink="false">https://gerirgaudi.wordpress.com/?p=164</guid>
		<description><![CDATA[A few months ago the aging Early 2009 Mac Mini in the living room was replaced with a 2010 model. The old one was having a hard time keeping up with HD content (mainly in terms of performance but also flat out refusing to display iTunes HD content after the upgrade to Snow Leopard) and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=164&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="float:right;" title="macmini_systemprofiler.jpg" src="http://gerirgaudi.files.wordpress.com/2011/01/macmini_systemprofiler1.jpg?w=238&#038;h=132" border="0" alt="macmini_systemprofiler.jpg" width="238" height="132" /></p>
<p>A few months ago the aging Early 2009 Mac Mini in the living room was replaced with a 2010 model. The old one was having a hard time keeping up with HD content (mainly in terms of performance but also flat out <a title="My Displays Are Not HDCP Authorized" href="http://blog.aiama.com/2010/03/10/my-displays-are-not-hdcp-authorized/">refusing to display iTunes HD content</a> after the upgrade to Snow Leopard) and the 1080p display over the DVI to HDMI adapter over-scanning issues were rather tiresome. The 2010 model did away with all that: faster CPU, more memory and native HDMI took care of those issues, which left a perfectly functional Macmini3,1 searching for a mission in life, a mission I had found even before I pulled the trigger on the new model.</p>
<div><a href="http://blog.aiama.com/2009/06/18/opensolaris-2009-06-ready-set-go/">A small server</a> in the office that I use to store backup copies of precious data away from my main desktop system, such as music and photos, is also the authoritative repository of software that gets pushed to all the other systems I use or care for. Additionally, it runs a small mail setup (mx + imap) for two personal domains and other bits of useful software, such as a personal wiki. It was been working flawlessly for quite some time, but I have been wanting to reduce the office&#8217;s power footprint, especially while I travel, which was challenging given the system needed to be up all the time.</div>
<p>Thus, the mission is defined: the Mac Mini needs to take over the services that run continuously so the other system can be powered off at will.</p>
<p>The migration is nearly complete: mail is flowing and the software repository is up to date. The wiki bits are still a work in progress, but those are not as critical, primarily because Evernote has largely replaced (and enhanced) the wiki use. None of this would have been possible without the <a href="http://www.macports.org/">MacPorts Project</a> community, at least not as fast and seamlessly as it has been. So there is happiness in the living room and there is happiness in the office.</p>
<div>On other related news, the aging PowerBook5,8 is finally headed for retirement. It has been a good 5+ years run, but in the end, it was entirely too slow now that its last user had embraced digital photography and was using quite heavily. I&#8217;m not sure what I will do with it: the recycling center should be its final destination, but there is an emotional link to that laptop that keeps me from doing it. It was the first laptop I bought at Ning (before we actually purchased Apple products at the office) and it has served us very well.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=164&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2011/01/04/macmini31-and-powerbook58/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>

		<media:content url="http://gerirgaudi.files.wordpress.com/2011/01/macmini_systemprofiler1.jpg" medium="image">
			<media:title type="html">macmini_systemprofiler.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Githubed!</title>
		<link>http://blog.aiama.com/2010/11/03/githubed/</link>
		<comments>http://blog.aiama.com/2010/11/03/githubed/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 17:22:40 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[ning]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[hiring]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://blog.aiama.com/2010/11/03/githubed/</guid>
		<description><![CDATA[In recent moths, we (&#8220;we&#8221; as in Ning) have started to open up some of our code to the community at large. There is quite a bit of useful stuff in there (23 public repositories and counting), compliments of powerhouses like brianm, davidsklar or tomdz (to name a few). We have also started sharing code [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=160&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In recent moths, we (&#8220;we&#8221; as in <a href="http://about.ning.com/" title="About Ning">Ning</a>) have started to open up <a href="https://github.com/ning" title="GitHub/Ning">some of our code</a> to the community at large. There is quite a bit of useful stuff in there (23 public repositories and counting), compliments of powerhouses like <a href="https://github.com/brianm" title="Brian McCallister">brianm</a>, <a href="https://github.com/davidsklar" title="David Sklar">davidsklar</a> or <a href="https://github.com/tomdz" title="Thomas Dudziak">tomdz</a> (to name a few). We have also started sharing code from the Operations side of the house, in hopes that it is useful to other Operations shops out in the ether.</p>
<p>Our first entry in this regard, at <a href="https://github.com/pierre" title="Pierre -Alexander Meyer">pierre</a>&#8216;s suggestion, is a Nagios plugin for <a href="http://www.tableausoftware.com/products/server">Tableau servers</a>, <a href="https://github.com/ning/check_tableau_systeminfo" title="check_tableau_systeminfo">check_tableau_systeminfo</a>, which is currently a little rough around the edges but quite usable. There is a new version right around the corner with some polish applied to said edges, and we are preparing a host of other tools for release that we currently use every day in our production environment.</p>
<p>Our production environment is currently comprised of 2000+ nodes, which makes it a relatively large environment that provides a fair amount of interesting operational problems to solve. And <a href="http://about.ning.com/careers/openings.php" title="Ning Open Positions">problems solvers</a> is something we are actively looking for, i.e., <b>we are hiring</b>! Ning is the largest platform in the world for creating custom social networks, currently hosting 70,000 paid subscribers (up from 15,000 before we transitioned from the prior &#8220;freemium&#8221; model), and serving over 80 million unique visitors monthly. This makes us one of the top 100 sites in the US, and, according to CNBC.com, <a href="http://www.cnbc.com/id/39573304/?slide=4" title="Six Cool Companies to Work for">one cool company to work for</a> (indeed!).</p>
<p>Check out the <a href="http://about.ning.com/careers/openings.php" title="Ning Open Positions">openings</a>, check out the <a href="https://github.com/ning/">code</a>, and come play in our playground.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=160&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2010/11/03/githubed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>
	</item>
		<item>
		<title>Nagios Forked: Icinga</title>
		<link>http://blog.aiama.com/2010/03/18/nagios-forked-icinga/</link>
		<comments>http://blog.aiama.com/2010/03/18/nagios-forked-icinga/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 18:31:03 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[nagios]]></category>

		<guid isPermaLink="false">http://blog.aiama.com/2010/03/18/nagios-forked-icinga/</guid>
		<description><![CDATA[I found out recently that Nagios was forked into Icinga. It looks interesting, and the new web interface is heading over to sexyland fast. I will take it out for spin soon and see how it handles our current configuration (which relies heavily on object inheritance). The team at Icinga has already built a fair [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=143&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I found out recently that Nagios was forked into <a href="http://www.icinga.org/about/" title="Icinga">Icinga</a>. It looks interesting, and the new web interface is heading over to <i>sexyland</i> fast. I will take it out for spin soon and see how it handles our current configuration (which relies heavily on object inheritance). The team at Icinga has already built a <a href="http://www.netways.de/en/de/produkte/nagios_addons/" title="Nagios Add-Ons">fair number of improvements</a> for Nagios proper. It may be the fastest path to nirvana to a more usable Nagios install for shops heavily invested in Nagios.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=143&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2010/03/18/nagios-forked-icinga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>
	</item>
		<item>
		<title>Mac SVN clients: Versions vs Cornerstone</title>
		<link>http://blog.aiama.com/2010/01/20/mac-svn-clients-versions-vs-cornerstone/</link>
		<comments>http://blog.aiama.com/2010/01/20/mac-svn-clients-versions-vs-cornerstone/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 19:18:53 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[versioning]]></category>

		<guid isPermaLink="false">http://blog.aiama.com/2010/01/20/mac-svn-clients-versions-vs-cornerstone/</guid>
		<description><![CDATA[Although I am not a full-time developer, I do deal with a fair amount of information that benefits from the joys of versioning (including software I write). A lot of that work today happens in an IDE (Xcode), but a lot of it happens in other contexts, so having a pretty (and above all, useful) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=135&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Although I am not a full-time developer, I do deal with a fair amount of information that benefits from the joys of <i>versioning</i> (including software I write). A lot of that work today happens in an IDE (Xcode), but a lot of it happens in other contexts, so having a pretty (and above all, useful) tool to navigate a repository is quite useful. I have been using <a href="http://versionsapp.com/" title="Versions App">Versions</a> for the Mac since it was beta, and it has proven to be a worthy helper. Recently, I ran into <a href="http://www.zennaware.com/cornerstone/" title="Cornerstone">Cornerstone</a>, and I decided to try it out of curiosity. Both are solid apps, and either one will service your SVN needs nicely. Hopefully Git will get one in the near future.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=135&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2010/01/20/mac-svn-clients-versions-vs-cornerstone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>
	</item>
		<item>
		<title>Reconnoiter</title>
		<link>http://blog.aiama.com/2009/11/17/reconnoiter/</link>
		<comments>http://blog.aiama.com/2009/11/17/reconnoiter/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 11:26:45 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[miniblog]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[monitoring]]></category>

		<guid isPermaLink="false">http://blog.aiama.com/2009/11/17/reconnoiter/</guid>
		<description><![CDATA[Go watch: Reconnoiter: a whirlwind tour. Any piece of software with a tagline like another product build from pain deserves your attention:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=117&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Go watch: <a href="http://omniti.com/video/noit-oscon-demo" title="Reconnoiter: a whirlwind tour">Reconnoiter: a whirlwind tour</a>. Any piece of software with a tagline like <em>another product build from <strong>pain</strong></em> deserves your attention:</p>
<p>  <img src="http://gerirgaudi.files.wordpress.com/2009/11/reconnoiter.png?w=480&#038;h=154" width="480" height="154" alt="Reconnoiter" style="border:1px #000000 dotted;" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=117&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2009/11/17/reconnoiter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>

		<media:content url="http://gerirgaudi.files.wordpress.com/2009/11/reconnoiter.png" medium="image">
			<media:title type="html">Reconnoiter</media:title>
		</media:content>
	</item>
		<item>
		<title>Enabling Remote Disc on non-MacBook Air clients</title>
		<link>http://blog.aiama.com/2009/11/11/enabling-remote-disc-on-non-macbook-air-clients/</link>
		<comments>http://blog.aiama.com/2009/11/11/enabling-remote-disc-on-non-macbook-air-clients/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 14:53:26 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[macos]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://blog.aiama.com/2009/11/11/enabling-remote-disc-on-non-macbook-air-clients/</guid>
		<description><![CDATA[Courtesy of bstreiff: Enabling Remote Disc on not-Airs: defaults write com.apple.NetworkBrowser EnableODiskBrowsing -bool true defaults write com.apple.NetworkBrowser ODSSupported -bool true Context: we have an older MacBook with what appears to be a busted DVD-ROM drive, preventing a clean install of the newly arrived cat. After enabling CD/DVD Sharing on the &#8220;server&#8221;, nothing would show up [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=112&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Courtesy of <a href="http://forums.macrumors.com/member.php?u=162377" title="bstreiff">bstreiff</a>: <a href="http://forums.macrumors.com/showthread.php?t=455975" title="Enabling Remote Disc on not-Airs">Enabling Remote Disc on not-Airs</a>:</p>
<blockquote><pre>
defaults write com.apple.NetworkBrowser EnableODiskBrowsing -bool true
defaults write com.apple.NetworkBrowser ODSSupported -bool true
</pre>
</blockquote>
<p>Context: we have an older MacBook with what appears to be a busted DVD-ROM drive, preventing a clean install of the newly arrived cat. After enabling CD/DVD Sharing on the &#8220;server&#8221;, nothing would show up on the &#8220;client&#8221;. After tweaking the above properties and restarting the Finder, it&#8217;s all good now. Install in progress.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=112&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2009/11/11/enabling-remote-disc-on-non-macbook-air-clients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>
	</item>
		<item>
		<title>Hyperic is not (yet?) a Full Nagios Replacement</title>
		<link>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/</link>
		<comments>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 23:16:44 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[hyperic]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[nagios]]></category>

		<guid isPermaLink="false">http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/</guid>
		<description><![CDATA[These days, among the many projects I&#8217;m shuffling, monitoring is taking some rather significant brain cycles. In any operational environment, monitoring is the closest link between humans and machines, primarily because monitoring is one of the main channels machines use most often to talk to humans (terminal sessions notwithstanding). In prior lives, Nagios has been [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=99&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These days, among the many projects I&#8217;m shuffling, monitoring is taking some rather significant brain cycles. In any operational environment, monitoring is the closest link between humans and machines, primarily because monitoring is one of the main channels machines use most often to <i>talk</i> to humans (terminal sessions notwithstanding).</p>
<p>In prior lives, <b><a href="http://www.nagios.org/">Nagios</a></b> has been one of the primary <i>fault</i> monitoring systems in use. It has a relatively long history as the monitoring workhorse in a large number of production environments, and with reason: high quality, open source, and free has meant easy adoption, especially in cash-conscious startups. It compiles on essentially all contemporary Unix-based platforms, and there is a significant knowledge base on and off the <i>Intertron.</i> It gets the job done. Add some good design to its configuration files and its management tools, and it&#8217;s top-notch. Minus, of course, its archaic web-based GUI. Details, details, details. <b><a href="http://www.hyperic.com/products/open-source-systems-monitoring.html">Hyperic HQ</a></b> is one of the monitoring tools I have been involved with most recently. Installation is relatively painless on both on the server and the client (and admittedly faster than that of getting Nagios up and running), it is <i>pretty</i>, sporting a modern, somewhat configurable interface, and offering features like autodiscovery out of the box.</p>
<p>A notable section in the Hyperic documentation is related to Nagios (<a href="http://support.hyperic.com/display/DOC/Nagios+Data" title="Hyperic HQ: Nagios Data">Nagios Data</a>), and the <a href="http://support.hyperic.com/download/attachments/59375779/HypericHQTour.pdf" title="Hyperic HQ Tour">Hyperic HQ Tour</a> also offers some comparative notes (PDF, page 5: &#8220;Hyperic HQ Compared to Nagios&#8221;). This is no coincidence: Nagios boasts a large installed base, and that makes it a tasty target to aim for (a <a href="http://support.hyperic.com/dosearchsite.action?s=zenoss" title="Zenoss on Hyperic docs?">seach for &#8220;Zenoss&#8221;</a>, for instance, yields no results). The comparison is, by all accounts, fair. There is nothing misleading or dishonest in it, and Hyperic HQ is indeed superior to Nagios in many respects (particularly in terms of <i>presentation</i>). There are some points, however, where I am not quite synched up with the Hyperic story, but these are generally small (but by no means insignificant) details. For instance, I&#8217;m quite happy to have configuration data stored in plain text files when its complexity does not merit a RDBMS.</p>
<p>The one significant sticky point (which is not mentioned in the tour but that is prominently highlighted in the documentation) is the apparent lack of any passive-like monitoring in Hyperic (no NSCA or NCSA-like support). Personally, I am a big fan of passive monitoring: components perform self-monitoring duties and report back to <i>central command</i> as necessary. I have used it quite successfully to monitor scripts that run periodically and are unpokeable (think all those wonderful tools you&#8217;ve written that ship logs back and forth), NetApp filers (by proxy), and almost any kind of custom software. Nagios documentation does not do true justice to passive monitoring: it is mostly described as a way to build distributed monitoring or reach components behind firewalls. And yet, it is an incredibly elegant methodology to monitor components and to do so from within the components themselves asynchronously; by definition, it is highly distributed, making each component (or proxies on their behalf) responsible for its own health, and yielding Nagios a great alert, escalation and notification manager. Add powerful inheritance and the resulting monitoring setup is scalable, efficient, and straightforward to automate. It is still (no point in hiding it) ugly, but hard to beat.</p>
<p>While Hyperic HQ has a home for <i>performance</i> monitoring, my money is still on Nagios for <i>fault</i> monitoring. I will be learning a lot more about Hyperic HQ over the next few weeks, so I will likely have more details to report in future posts (I am seriously exploring what it would take to feed passive test results to Hyperic so they can be available in the Hyperic dashboard, for instance). Stay tuned.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=99&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2009/10/07/hyperic-is-not-yet-a-full-nagios-replacement/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenSolaris 2009.06: ready, set, go!</title>
		<link>http://blog.aiama.com/2009/06/18/opensolaris-2009-06-ready-set-go/</link>
		<comments>http://blog.aiama.com/2009/06/18/opensolaris-2009-06-ready-set-go/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 18:21:07 +0000</pubDate>
		<dc:creator>gerirgaudi</dc:creator>
				<category><![CDATA[os]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[opensolaris]]></category>

		<guid isPermaLink="false">http://blog.aiama.com/2009/06/18/opensolaris-2009-06-ready-set-go/</guid>
		<description><![CDATA[Today I picked up a cheap Compaq Presario (yep, C-o-m-p-a-q) with an Athlon X2, 4GB of RAM and a 320GB SATA drive for under $300. I have some VMs and other cruft to run and I rather not do it on the Mac Pro anymore. This will do fine, especially as a playground of sorts. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=64&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I picked up a cheap Compaq Presario (yep, C-o-m-p-a-q) with an Athlon X2, 4GB of RAM and a 320GB SATA drive for under $300. I have some VMs and other cruft to run and I rather not do it on the Mac Pro anymore. This will do fine, especially as a playground of sorts. I wanted to put <a href="http://dlc.sun.com/osol/opensolaris/2009/06/osol-0906-x86.iso" title="opensolaris 2009.06 ISO">OpenSolaris 2009.06</a> on it, which took less than 20 minutes, including the creation of a <a href="http://darkstar-solaris.blogspot.com/2008/09/zfs-root-mirror.html" title="zfs root mirror">ZFS root mirror</a>. Another 10 minutes to flip into a <a href="http://opensolaris.org/os/community/xen/docs/2008_11_dom0/" title="dom0">Dom0</a> and I&#8217;m ready to go.</p>
<p>Very sweet indeed.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerirgaudi.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerirgaudi.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerirgaudi.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerirgaudi.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerirgaudi.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerirgaudi.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerirgaudi.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerirgaudi.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerirgaudi.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerirgaudi.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerirgaudi.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerirgaudi.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerirgaudi.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerirgaudi.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.aiama.com&amp;blog=3418512&amp;post=64&amp;subd=gerirgaudi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.aiama.com/2009/06/18/opensolaris-2009-06-ready-set-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b079627c377fe7a5555fb68068724ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerirgaudi</media:title>
		</media:content>
	</item>
	</channel>
</rss>
