On Wed, 2007-06-20 at 00:13 -0600, Natraj Muthukrishnan wrote:

>  I tried doing the below steps. telnet for gmond is working and for
>  gmetad is also working.

Well, technically your telnet command worked in the sense that it gave
some XML output.  But recall my previous suggestion...

> >>> Richard Mohr <[EMAIL PROTECTED]> 06/19/07 7:27 PM >>> 
> 1) Start with gmond.  Just start it up and don't worry about gmetad yet.
> You should be able to telnet to port 8649 on localhost and see a dump of
> all the xml data.  If you don't see any metrics, then the problem could
> be with using multicast.  In that cast, try a unicast configuration.

Looking at the gmond.xml file you attached, I see the output contains:

<GANGLIA_XML VERSION="3.0.4" SOURCE="gmond">
<CLUSTER NAME="Nataraj-Grid-Node" LOCALTIME="1182316381" OWNER="Nataraj" 
LATLONG="unspecified" URL="unspecified">
</CLUSTER>
</GANGLIA_XML>

There are no host or metric elements in the output.  That leads me to
believe that gmond is not working correctly, and it is not receiving the
metrics that it is transmitting.  The most obvious culprit is mutlicast.
Try configuring a unicast setup using something like this:

udp_send_channel {
  host = 127.0.0.1
  port = 8649
}
udp_recv_channel {
  bind = 127.0.0.1
  port = 8649
}
tcp_accept_channel {
  port = 8649
}

See if that makes a difference.

-- 
Rick Mohr
Systems Developer
Ohio Supercomputer Center


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Ganglia-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ganglia-general

Reply via email to