<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Monit, how did I ever live without you?</title>
	<atom:link href="http://blog.killtheradio.net/reviews/monit-how-did-i-ever-live-without-you/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.killtheradio.net/reviews/monit-how-did-i-ever-live-without-you/</link>
	<description>or die trying</description>
	<lastBuildDate>Sat, 04 Feb 2012 16:20:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Andrew Lyon</title>
		<link>http://blog.killtheradio.net/reviews/monit-how-did-i-ever-live-without-you/#comment-1537</link>
		<dc:creator>Andrew Lyon</dc:creator>
		<pubDate>Wed, 15 Dec 2010 16:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.killtheradio.net/?p=573#comment-1537</guid>
		<description>Nagaraj,

Can you post the code in https://pastee.org/ and post the link? The formatting is all messed up when you post as a comment.

Thanks,
Andrew</description>
		<content:encoded><![CDATA[<p>Nagaraj,</p>
<p>Can you post the code in <a href="https://pastee.org/" rel="nofollow">https://pastee.org/</a> and post the link? The formatting is all messed up when you post as a comment.</p>
<p>Thanks,<br />
Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nagaraj</title>
		<link>http://blog.killtheradio.net/reviews/monit-how-did-i-ever-live-without-you/#comment-1536</link>
		<dc:creator>nagaraj</dc:creator>
		<pubDate>Wed, 15 Dec 2010 15:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.killtheradio.net/?p=573#comment-1536</guid>
		<description>Hi,
Correct me if I am wrong, I have installed mmonit-2.3.1 in debin lenny 5.07 version of 64bit.

path is under /mmonit/mmonit-2.3.1/bin/mmonit file

!/bin/sh
DIR=$(dirname $0)

export LD_LIBRARY_PATH=&quot;$DIR/mmonit/mmonit-2.3.1/lib/:$LD_LIBRARY_PATH&quot; export PATH=$/mmonit/mmonit-2.3.1/bin exec $DIR/mmonit-bin $@

path under /mmonit/mmonit-2.3.1/bin/mmonit_init file

!/bin/sh
#

Sample init script for M/Monit to be placed in /etc/init.d/ and linked to run levels
# DESC=&quot;mmonit&quot; NAME=mmonit DAEMON=/mmonit/mmonit-2.3.1/bin/$NAME SCRIPTNAME=/etc/init.d/$mmonit_init PIDFILE=/var/run/mmonit.pid

Gracefully exit if the package has been removed.
test -x $DAEMON &#124;&#124; exit 0 d_start() { $DAEMON -p /var/run/ &#124;&#124; echo -en &quot;\n already running&quot; } d_stop() { kill -QUIT cat $PIDFILE &#124;&#124; echo -en &quot;\n not running&quot; } d_reload() { kill -HUP cat $PIDFILE &#124;&#124; echo -en &quot;\n can&#039;t reload&quot; } case &quot;$1&quot; in start) echo -n &quot;Starting $DESC: $NAME&quot; d_start echo &quot;.&quot; ;; stop) echo -n &quot;Stopping $DESC: $NAME&quot; d_stop echo &quot;.&quot; ;; reload) echo -n &quot;Reloading $DESC configuration...&quot; d_reload echo &quot;.&quot; ;; restart) echo -n &quot;Restarting $DESC: $NAME&quot; d_stop sleep 5 d_start echo &quot;.&quot; ;; *) echo &quot;Usage: $SCRIPTNAME {start&#124;stop&#124;restart&#124;reload}&quot; &gt;&amp;2 exit 3 ;; esac exit 0 after

when I execute the init file shows the output as:

in2:/mmonit/mmonit-2.3.1/bin# sudo /etc/init.d/mmonit_init restart Restarting mmonit: mmonitcat: /var/run/mmonit.pid: No such file or directory kill: usage: kill [-s sigspec &#124; -n signum &#124; -sigspec] pid &#124; jobspec ... or kill -l [sigspec]

not running/mmonit/mmonit-2.3.1/bin/mmonit: line 7: /mmonit/mmonit-2.3.1/bin/mmonit-bin: No such file or directory /mmonit/mmonit-2.3.1/bin/mmonit: line 7: /mmonit/mmonit-2.3.1/bin/mmonit-bin: Success

not sure, whether the init script is correct or not else I need to add some more in the script.

Is there anybody can help me out.

Thanks,
Nagaraj</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Correct me if I am wrong, I have installed mmonit-2.3.1 in debin lenny 5.07 version of 64bit.</p>
<p>path is under /mmonit/mmonit-2.3.1/bin/mmonit file</p>
<p>!/bin/sh<br />
DIR=$(dirname $0)</p>
<p>export LD_LIBRARY_PATH=&#8221;$DIR/mmonit/mmonit-2.3.1/lib/:$LD_LIBRARY_PATH&#8221; export PATH=$/mmonit/mmonit-2.3.1/bin exec $DIR/mmonit-bin $@</p>
<p>path under /mmonit/mmonit-2.3.1/bin/mmonit_init file</p>
<p>!/bin/sh<br />
#</p>
<p>Sample init script for M/Monit to be placed in /etc/init.d/ and linked to run levels<br />
# DESC=&#8221;mmonit&#8221; NAME=mmonit DAEMON=/mmonit/mmonit-2.3.1/bin/$NAME SCRIPTNAME=/etc/init.d/$mmonit_init PIDFILE=/var/run/mmonit.pid</p>
<p>Gracefully exit if the package has been removed.<br />
test -x $DAEMON || exit 0 d_start() { $DAEMON -p /var/run/ || echo -en &#8220;\n already running&#8221; } d_stop() { kill -QUIT cat $PIDFILE || echo -en &#8220;\n not running&#8221; } d_reload() { kill -HUP cat $PIDFILE || echo -en &#8220;\n can&#8217;t reload&#8221; } case &#8220;$1&#8243; in start) echo -n &#8220;Starting $DESC: $NAME&#8221; d_start echo &#8220;.&#8221; ;; stop) echo -n &#8220;Stopping $DESC: $NAME&#8221; d_stop echo &#8220;.&#8221; ;; reload) echo -n &#8220;Reloading $DESC configuration&#8230;&#8221; d_reload echo &#8220;.&#8221; ;; restart) echo -n &#8220;Restarting $DESC: $NAME&#8221; d_stop sleep 5 d_start echo &#8220;.&#8221; ;; *) echo &#8220;Usage: $SCRIPTNAME {start|stop|restart|reload}&#8221; &gt;&amp;2 exit 3 ;; esac exit 0 after</p>
<p>when I execute the init file shows the output as:</p>
<p>in2:/mmonit/mmonit-2.3.1/bin# sudo /etc/init.d/mmonit_init restart Restarting mmonit: mmonitcat: /var/run/mmonit.pid: No such file or directory kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec &#8230; or kill -l [sigspec]</p>
<p>not running/mmonit/mmonit-2.3.1/bin/mmonit: line 7: /mmonit/mmonit-2.3.1/bin/mmonit-bin: No such file or directory /mmonit/mmonit-2.3.1/bin/mmonit: line 7: /mmonit/mmonit-2.3.1/bin/mmonit-bin: Success</p>
<p>not sure, whether the init script is correct or not else I need to add some more in the script.</p>
<p>Is there anybody can help me out.</p>
<p>Thanks,<br />
Nagaraj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Lyon</title>
		<link>http://blog.killtheradio.net/reviews/monit-how-did-i-ever-live-without-you/#comment-1501</link>
		<dc:creator>Andrew Lyon</dc:creator>
		<pubDate>Fri, 23 Jul 2010 17:30:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.killtheradio.net/?p=573#comment-1501</guid>
		<description>Rodney, I noticed the same a week or so after posting. m/monit doesn&#039;t seem too complicated though, I might try to write my own when I&#039;m not busy. Either way the real power is in monit.</description>
		<content:encoded><![CDATA[<p>Rodney, I noticed the same a week or so after posting. m/monit doesn&#8217;t seem too complicated though, I might try to write my own when I&#8217;m not busy. Either way the real power is in monit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rodney</title>
		<link>http://blog.killtheradio.net/reviews/monit-how-did-i-ever-live-without-you/#comment-1500</link>
		<dc:creator>Rodney</dc:creator>
		<pubDate>Fri, 23 Jul 2010 02:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.killtheradio.net/?p=573#comment-1500</guid>
		<description>Although monit is free, I believe m/monit is only a free 30-day trial? Says my license is only good for another month under the &quot;Admin&quot; tab.</description>
		<content:encoded><![CDATA[<p>Although monit is free, I believe m/monit is only a free 30-day trial? Says my license is only good for another month under the &#8220;Admin&#8221; tab.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

