Sponsored Content
Special Forums UNIX and Linux Applications Infrastructure Monitoring ganglia with one server and one client Post 302697641 by rrwww on Friday 7th of September 2012 06:58:37 AM
Old 09-07-2012
ganglia with one server and one client

HeY till now i configured ganglia3.1.7 on rhel for localhost monitoring traffic evrything was ok but now i want another system in my lan for load moniotring


I installed gmond &gmond-python on it
biut i face this log error on system 1
Code:
Sep  7 16:01:58 HAPROXY1 /usr/sbin/gmond[24170]: [PYTHON] Can't call the metric handler function for [tcp_lastack] in the python module [tcpconn].#012

On server with gmetad service and i have this log error
Code:
/usr/sbin/gmetad[1305]: data_thread() got no answer from any [cluster] datasource


I dnot get what is exact problem.


Moderator's Comments:
Mod Comment Please use code tags next time for your code and data.

Last edited by zaxxon; 09-07-2012 at 08:25 AM.. Reason: code tags
 

6 More Discussions You Might Find Interesting

1. Programming

Client/Server Socket Application - Preventing Client from quitting on server crash

Problem - Linux Client/Server Socket Application: Preventing Client from quitting on server crash Hi, I am writing a Linux socket Server and Client using TCP protocol on Ubuntu 9.04 x64. I am having problem trying to implement a scenario where the client should keep running even when the... (2 Replies)
Discussion started by: varun.nagpaal
2 Replies

2. Linux

How to split up hosts in Ganglia?

I have 3 server 'farms': prod, staging, and qa. I have Ganglia setup and gathering stats fine, but I want to separate the 3 server farms using the same Ganglia server. How can I do this? Any input would be appreciated! -KBS (1 Reply)
Discussion started by: kbshaq
1 Replies

3. UNIX and Linux Applications

Ganglia config

Hello all I have a concept anderstanding problem with Ganglia. I have one server ubuntu where I install gmetad and web server + apache and php. Then I have the web interface up and running. I have several nodes to monitor, so I install gmond in each one. The problem I have is to know what IP... (0 Replies)
Discussion started by: ldiaz2106
0 Replies

4. Windows & DOS: Issues & Discussions

Office server => laptop =>client server ...a lengthy and laborious ftp procedure

Hi All, I need your expertise in finding a way to solve my problem.Please excuse if this is not the right forum to ask this question and guide me to the correct forum,if possible. I am a DBA and on a daily basis i have to ftp huge dump files from my company server to my laptop and then... (3 Replies)
Discussion started by: kunwar
3 Replies

5. Programming

Client Server C

Hello, Please I would create a client and a server in C that communicate frequently. The client sends "hello message" to the server, the server waits a few minutes and sends a "hello message" to the client, the client sends again "hello server ".. etc up to 15 minutes Can you guide me... (3 Replies)
Discussion started by: chercheur857
3 Replies

6. Shell Programming and Scripting

Sftp script for dev server to client server

hi, i am new to unix, cuold u send some sftp acripts to send files to dev server to clint server, (1 Reply)
Discussion started by: Koti.annam
1 Replies
PYTHON-CONFIG(1)					      General Commands Manual						  PYTHON-CONFIG(1)

NAME
python-config - output build options for python C/C++ extensions or embedding SYNOPSIS
python-config [ --prefix ] [ --exec-prefix ] [ --includes ] [ --libs ] [ --cflags ] [ --ldflags ] [ --help ] DESCRIPTION
python-config helps compiling and linking programs, which embed the Python interpreter, or extension modules that can be loaded dynamically (at run time) into the interpreter. OPTIONS
--cflags print the C compiler flags. --ldflags print the flags that should be passed to the linker. --includes similar to --cflags but only with -I options (path to python header files). --libs similar to --ldflags but only with -l options (used libraries). --prefix prints the prefix (base directory) under which python can be found. --exec-prefix print the prefix used for executable program directories (such as bin, sbin, etc). --help print the usage message. EXAMPLES
To build the singe-file c program prog against the python library, use gcc $(python-config --cflags --ldflags) progr.cpp -o progr.cpp The same in a makefile: CFLAGS+=$(shell python-config --cflags) LDFLAGS+=$(shell python-config --ldflags) all: progr To build a dynamically loadable python module, use gcc $(python-config --cflags --ldflags) -shared -fPIC progr.cpp -o progr.so SEE ALSO
python (1) http://docs.python.org/extending/extending.html /usr/share/doc/python/faq/extending.html AUTHORS
This manual page was written by Johann Felix Soden <johfel@gmx.de> for the Debian project (and may be used by others). November 27, 2011 PYTHON-CONFIG(1)
All times are GMT -4. The time now is 08:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy