<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments for arfore dot com</title>
	<atom:link href="http://arfore.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://arfore.com/blog</link>
	<description>welcome to the foremind</description>
	<pubDate>Wed, 07 Jan 2009 00:41:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Starting NRPE via launchd by Andy Fore</title>
		<link>http://arfore.com/blog/2008/10/12/starting-nrpe-via-launchd/comment-page-1/#comment-184</link>
		<dc:creator>Andy Fore</dc:creator>
		<pubDate>Fri, 02 Jan 2009 17:07:32 +0000</pubDate>
		<guid isPermaLink="false">http://arfore.com/?p=138#comment-184</guid>
		<description>JW,

You are correct that the user and group of nagios would be required.  However since I followed the install method that we use on our Solaris machines this wasn't a problem.  I just created the user and group.

As for the WorkingDirectory section, I tried this and it didn't successfully work on my installations.  Which is why I created the symbolic link for the config file as well as specifying the complete path to the binary.

You can also tell whether the plist worked successfully by watching the console for error messages.  All you get from the list of loaded launch processes is whether it is running or not.  The console messages actually give you error messages that you can use for debug.

HTH,

Andy</description>
		<content:encoded><![CDATA[<p>JW,</p>
<p>You are correct that the user and group of nagios would be required.  However since I followed the install method that we use on our Solaris machines this wasn&#8217;t a problem.  I just created the user and group.</p>
<p>As for the WorkingDirectory section, I tried this and it didn&#8217;t successfully work on my installations.  Which is why I created the symbolic link for the config file as well as specifying the complete path to the binary.</p>
<p>You can also tell whether the plist worked successfully by watching the console for error messages.  All you get from the list of loaded launch processes is whether it is running or not.  The console messages actually give you error messages that you can use for debug.</p>
<p>HTH,</p>
<p>Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting NRPE via launchd by JW</title>
		<link>http://arfore.com/blog/2008/10/12/starting-nrpe-via-launchd/comment-page-1/#comment-183</link>
		<dc:creator>JW</dc:creator>
		<pubDate>Fri, 02 Jan 2009 16:51:29 +0000</pubDate>
		<guid isPermaLink="false">http://arfore.com/?p=138#comment-183</guid>
		<description>This plist will fail to launch nrpe if you don't have a nagios user/group. You'll get errors like this in /var/log/system.log and /var/log/asl.log:

[Message org.nagios.nrpe: getpwnam("nagios") failed]
[Message org.nagios.nrpe: getgrnam("nagios") failed]

You'll need to edit the plist and change the appropriate group and user names.

I also added the following section based on some info I found on the web - I don't know if it's really needed or not:

        WorkingDirectory
        /usr/local/nrpe/

I originally added it right above the first ProgramArguments but launchctl has moved it down to just above inetdCompatibility

To see if you were able to sucessfully load this plist and to verify that nrpe is running, executee "launchctl list" and look for the string org.nagios.nrpe

HTH,

	JW
	http://jwadmin.blogspot.com</description>
		<content:encoded><![CDATA[<p>This plist will fail to launch nrpe if you don&#8217;t have a nagios user/group. You&#8217;ll get errors like this in /var/log/system.log and /var/log/asl.log:</p>
<p>[Message org.nagios.nrpe: getpwnam("nagios") failed]<br />
[Message org.nagios.nrpe: getgrnam("nagios") failed]</p>
<p>You&#8217;ll need to edit the plist and change the appropriate group and user names.</p>
<p>I also added the following section based on some info I found on the web - I don&#8217;t know if it&#8217;s really needed or not:</p>
<p>        WorkingDirectory<br />
        /usr/local/nrpe/</p>
<p>I originally added it right above the first ProgramArguments but launchctl has moved it down to just above inetdCompatibility</p>
<p>To see if you were able to sucessfully load this plist and to verify that nrpe is running, executee &#8220;launchctl list&#8221; and look for the string org.nagios.nrpe</p>
<p>HTH,</p>
<p>	JW<br />
	<a href="http://jwadmin.blogspot.com" onclick="javascript:pageTracker._trackPageview('/outbound/comment/http://jwadmin.blogspot.com');" rel="nofollow">http://jwadmin.blogspot.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VNC on the AppleTV by Andy Fore</title>
		<link>http://arfore.com/blog/2008/12/10/vnc-on-the-appletv/comment-page-1/#comment-181</link>
		<dc:creator>Andy Fore</dc:creator>
		<pubDate>Wed, 17 Dec 2008 23:55:03 +0000</pubDate>
		<guid isPermaLink="false">http://arfore.com/blog/?p=142#comment-181</guid>
		<description>@Bill Helsabeck: I am not sure why you don't see that path on your AppleTV.  As far as I can tell it has to be there since that is where the launchd plists from Apple and aTV live.

According to the Apple documentation at http://developer.apple.com/MacOsX/launchd.html you should not use the /System/Library level directories since that is "reserved for system-provided daemons", however in my testing I could not get it to work consistently unless I placed it in the LaunchDaemons directory inside the /System/Library directory.

Andy</description>
		<content:encoded><![CDATA[<p>@Bill Helsabeck: I am not sure why you don&#8217;t see that path on your AppleTV.  As far as I can tell it has to be there since that is where the launchd plists from Apple and aTV live.</p>
<p>According to the Apple documentation at <a href="http://developer.apple.com/MacOsX/launchd.html" onclick="javascript:pageTracker._trackPageview('/outbound/comment/http://developer.apple.com/MacOsX/launchd.html');" rel="nofollow">http://developer.apple.com/MacOsX/launchd.html</a> you should not use the /System/Library level directories since that is &#8220;reserved for system-provided daemons&#8221;, however in my testing I could not get it to work consistently unless I placed it in the LaunchDaemons directory inside the /System/Library directory.</p>
<p>Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VNC on the AppleTV by iMattUK</title>
		<link>http://arfore.com/blog/2008/12/10/vnc-on-the-appletv/comment-page-1/#comment-180</link>
		<dc:creator>iMattUK</dc:creator>
		<pubDate>Wed, 17 Dec 2008 22:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://arfore.com/blog/?p=142#comment-180</guid>
		<description>Hi Bill,

I can't help you I'm afraid as I haven't done the script steps myself but I just wanted to say that for a newbie you're doing just fine!  Most people wouldn't dream of playing with the technology in the way you are, so you have my respect!

Hopefully arfore can help you out with your question.

Cheers,

Matt</description>
		<content:encoded><![CDATA[<p>Hi Bill,</p>
<p>I can&#8217;t help you I&#8217;m afraid as I haven&#8217;t done the script steps myself but I just wanted to say that for a newbie you&#8217;re doing just fine!  Most people wouldn&#8217;t dream of playing with the technology in the way you are, so you have my respect!</p>
<p>Hopefully arfore can help you out with your question.</p>
<p>Cheers,</p>
<p>Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VNC on the AppleTV by Bill Helsabeck</title>
		<link>http://arfore.com/blog/2008/12/10/vnc-on-the-appletv/comment-page-1/#comment-179</link>
		<dc:creator>Bill Helsabeck</dc:creator>
		<pubDate>Wed, 17 Dec 2008 21:51:10 +0000</pubDate>
		<guid isPermaLink="false">http://arfore.com/blog/?p=142#comment-179</guid>
		<description>I am just a retired airline pilot that enjoys messing around with these computers. I have done your stuff as well as iMattUK's stuff and it all appears to work. At first I though yours were two separate ways to achieve the VNC connection, but now I believe I realize that both sets of instructions work together. His to get it going initially and yours to keep it going.

My one nagging question... How come I can't see a "Daemon" folder? I have manually placed a copy of "com.OSXvnc.plist" in the LaunchAgent folder as well as entered the commands in Terminal (I have a copy also resident in the desktop level of the AppleTV as seen via Cyberduck.. apparently that isn't causing any harm..). I'm sure Agent and Daemon are totally different, but..

Anyway...it all works with aTV flash 3.4.3, and since I have a 250gb HD in my aTV, It doesn't bother me having what I am sure is "clutter" lying around.

Thanks again for the instructions.</description>
		<content:encoded><![CDATA[<p>I am just a retired airline pilot that enjoys messing around with these computers. I have done your stuff as well as iMattUK&#8217;s stuff and it all appears to work. At first I though yours were two separate ways to achieve the VNC connection, but now I believe I realize that both sets of instructions work together. His to get it going initially and yours to keep it going.</p>
<p>My one nagging question&#8230; How come I can&#8217;t see a &#8220;Daemon&#8221; folder? I have manually placed a copy of &#8220;com.OSXvnc.plist&#8221; in the LaunchAgent folder as well as entered the commands in Terminal (I have a copy also resident in the desktop level of the AppleTV as seen via Cyberduck.. apparently that isn&#8217;t causing any harm..). I&#8217;m sure Agent and Daemon are totally different, but..</p>
<p>Anyway&#8230;it all works with aTV flash 3.4.3, and since I have a 250gb HD in my aTV, It doesn&#8217;t bother me having what I am sure is &#8220;clutter&#8221; lying around.</p>
<p>Thanks again for the instructions.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
