<?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: How to Install &amp; Upgrade Nagmin for Nagios 1.x</title>
	<atom:link href="http://www.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/</link>
	<description>Install,configure,troubleshoot opensource monitoring with tips and tricks</description>
	<lastBuildDate>Mon, 21 Nov 2011 02:26:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: kerim</title>
		<link>http://www.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/comment-page-1/#comment-443</link>
		<dc:creator>kerim</dc:creator>
		<pubDate>Sun, 20 Mar 2011 01:15:38 +0000</pubDate>
		<guid isPermaLink="false">http://www2.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/#comment-443</guid>
		<description>The Error
1. (Error: version issue):
Some error found when your login webmin --&gt; Server --&gt; nagMIN Network Monitoring.

Error message:
The MySQL client program /usr/bin/mysql does not appear to be the correct version. Webmin only supports MySQL versions 3 and above.

The command /usr/bin/mysql -V returned : 
/usr/bin/mysql  Ver 14.12 Distrib 5.0.22, for redhat-linux-gnu (i686) using readline 5.0
Suggested fix:
open terminal and type vi /usr/libexec/webmin/nagmin/index.cgi
find &quot;distrib&quot; and add &quot;&#124; 5&quot; after 4 at same line
save and quit the vi.

2. error found when your login webmin --&gt; Server --&gt; nagMIN Network Monitoring --&gt; in column System Databases --&gt; nagios

error message:
&quot;Error - Perl execution failed
Can&#039;t use an undefined value as a HASH reference at /path/to/mysql.pm line 113&quot;
Suggested fix:
Location mysql.pm on Suse /usr/lib/perl5/vendor_perl/5.8.8/i586-linux-thread-multi/DBD/mysql.pm

At around line 109 of mysql.pm:

------------------------------------
  # Avoid warnings for undefined values
  $username &#124;&#124;= &#039;&#039;;
  $password &#124;&#124;= &#039;&#039;;

  # create a &#039;blank&#039; dbh
  my($this, $privateAttrHash) = (undef, $attrhash);
  $privateAttrHash = { %$privateAttrHash,
&#039;Name&#039; =&gt; $dsn,
&#039;user&#039; =&gt; $username,
&#039;password&#039; =&gt; $password
  };
-------------------------------------

Needs to be changed to

-------------------------------------
 # Avoid warnings for undefined values
  $username &#124;&#124;= &#039;&#039;;
  $password &#124;&#124;= &#039;&#039;;
  $attrhash &#124;&#124;= {};

  # create a &#039;blank&#039; dbh
  my($this, $privateAttrHash) = (undef, $attrhash);
  $privateAttrHash = { %$privateAttrHash,
&#039;Name&#039; =&gt; $dsn,
&#039;user&#039; =&gt; $username,
&#039;password&#039; =&gt; $password
  };

Finish.</description>
		<content:encoded><![CDATA[<p>The Error<br />
1. (Error: version issue):<br />
Some error found when your login webmin &#8211;&gt; Server &#8211;&gt; nagMIN Network Monitoring.</p>
<p>Error message:<br />
The MySQL client program /usr/bin/mysql does not appear to be the correct version. Webmin only supports MySQL versions 3 and above.</p>
<p>The command /usr/bin/mysql -V returned :<br />
/usr/bin/mysql  Ver 14.12 Distrib 5.0.22, for redhat-linux-gnu (i686) using readline 5.0<br />
Suggested fix:<br />
open terminal and type vi /usr/libexec/webmin/nagmin/index.cgi<br />
find &#8220;distrib&#8221; and add &#8220;| 5&#8243; after 4 at same line<br />
save and quit the vi.</p>
<p>2. error found when your login webmin &#8211;&gt; Server &#8211;&gt; nagMIN Network Monitoring &#8211;&gt; in column System Databases &#8211;&gt; nagios</p>
<p>error message:<br />
&#8220;Error &#8211; Perl execution failed<br />
Can&#8217;t use an undefined value as a HASH reference at /path/to/mysql.pm line 113&#8243;<br />
Suggested fix:<br />
Location mysql.pm on Suse /usr/lib/perl5/vendor_perl/5.8.8/i586-linux-thread-multi/DBD/mysql.pm</p>
<p>At around line 109 of mysql.pm:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
  # Avoid warnings for undefined values<br />
  $username ||= &#8221;;<br />
  $password ||= &#8221;;</p>
<p>  # create a &#8216;blank&#8217; dbh<br />
  my($this, $privateAttrHash) = (undef, $attrhash);<br />
  $privateAttrHash = { %$privateAttrHash,<br />
&#8216;Name&#8217; =&gt; $dsn,<br />
&#8216;user&#8217; =&gt; $username,<br />
&#8216;password&#8217; =&gt; $password<br />
  };<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Needs to be changed to</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
 # Avoid warnings for undefined values<br />
  $username ||= &#8221;;<br />
  $password ||= &#8221;;<br />
  $attrhash ||= {};</p>
<p>  # create a &#8216;blank&#8217; dbh<br />
  my($this, $privateAttrHash) = (undef, $attrhash);<br />
  $privateAttrHash = { %$privateAttrHash,<br />
&#8216;Name&#8217; =&gt; $dsn,<br />
&#8216;user&#8217; =&gt; $username,<br />
&#8216;password&#8217; =&gt; $password<br />
  };</p>
<p>Finish.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/comment-page-1/#comment-43</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 08 Jan 2009 08:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://www2.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/#comment-43</guid>
		<description>Its unfortunate, Nagmin development stopped way back in 2003 and with the architecture change in nagios from 2.x onwards, it doesnt support nagios 2.x 3.x versions</description>
		<content:encoded><![CDATA[<p>Its unfortunate, Nagmin development stopped way back in 2003 and with the architecture change in nagios from 2.x onwards, it doesnt support nagios 2.x 3.x versions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mati</title>
		<link>http://www.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/comment-page-1/#comment-42</link>
		<dc:creator>Mati</dc:creator>
		<pubDate>Wed, 07 Jan 2009 13:04:22 +0000</pubDate>
		<guid isPermaLink="false">http://www2.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/#comment-42</guid>
		<description>Hi Akhil
I&#039;ve had the same issue as you. Nagmin doesn&#039;t recognize the newer version of the mysql database. I&#039;ve found the solution here http://opensource-2u.blogspot.com/2007/08/how-to-install-network-monitoring-tool.html</description>
		<content:encoded><![CDATA[<p>Hi Akhil<br />
I&#8217;ve had the same issue as you. Nagmin doesn&#8217;t recognize the newer version of the mysql database. I&#8217;ve found the solution here <a href="http://opensource-2u.blogspot.com/2007/08/how-to-install-network-monitoring-tool.html" rel="nofollow">http://opensource-2u.blogspot.com/2007/08/how-to-install-network-monitoring-tool.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akhil</title>
		<link>http://www.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/comment-page-1/#comment-19</link>
		<dc:creator>Akhil</dc:creator>
		<pubDate>Wed, 25 Jun 2008 11:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://www2.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/#comment-19</guid>
		<description>When i click on this option in webmin &quot;NagMIN Network Monitoring&quot; it will ask user name and password of mysql root user and password. 
  &quot;Webmin needs to know your MySQL administration login and password in order to manage your database. Please enter your administration username (usually root) and password below.&quot;

i am putting mysql root user name and password but it is not accepting when i use mysql root user name and password on ternimal it will accept my username and password.

&quot;Login failed : Incorrect administration username or password&quot; 


Why this error is coming can you guide me what is the solution.</description>
		<content:encoded><![CDATA[<p>When i click on this option in webmin &#8220;NagMIN Network Monitoring&#8221; it will ask user name and password of mysql root user and password.<br />
  &#8220;Webmin needs to know your MySQL administration login and password in order to manage your database. Please enter your administration username (usually root) and password below.&#8221;</p>
<p>i am putting mysql root user name and password but it is not accepting when i use mysql root user name and password on ternimal it will accept my username and password.</p>
<p>&#8220;Login failed : Incorrect administration username or password&#8221; </p>
<p>Why this error is coming can you guide me what is the solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akhil</title>
		<link>http://www.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/comment-page-1/#comment-18</link>
		<dc:creator>Akhil</dc:creator>
		<pubDate>Wed, 25 Jun 2008 09:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://www2.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/#comment-18</guid>
		<description>The MySQL client program /usr/bin/mysql does not appear to be the correct version. Webmin only supports MySQL versions 3 and above...


I am getting this error when run “Nagmin Nagios Monitoring” can anybody help me in this. 

Akhil</description>
		<content:encoded><![CDATA[<p>The MySQL client program /usr/bin/mysql does not appear to be the correct version. Webmin only supports MySQL versions 3 and above&#8230;</p>
<p>I am getting this error when run “Nagmin Nagios Monitoring” can anybody help me in this. </p>
<p>Akhil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kjetil P</title>
		<link>http://www.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/comment-page-1/#comment-15</link>
		<dc:creator>Kjetil P</dc:creator>
		<pubDate>Mon, 14 Apr 2008 12:06:37 +0000</pubDate>
		<guid isPermaLink="false">http://www2.netmonitoring.org/nagios/how-to-install-upgrade-nagmin-for-nagios-1x/#comment-15</guid>
		<description>I&#039;ve just upgraded to Nagios 3.0.1.
Is there any version of nagmin or similar that supports lates Nagios version?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve just upgraded to Nagios 3.0.1.<br />
Is there any version of nagmin or similar that supports lates Nagios version?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

