Why no columns "cpu","disk","procs", "svcs" displayed for Windows 2003 clients on web page of hobbit server?
Hobbit server 4.2.0 running on RHEL4, BB client 1.08d on Windows 2003 servers.
There're no such columns displayed , e.g. "cpu","disk","procs","svcs" for Windows 2003 (servers) clients. Only three columns, or "conn", "info","trends" displayed. no firewall between them.
Some parameters dismatched? connection parameters on client are default as below: IP Port:1984, Timer:300,Logs Timer:60
But one Windows XP client looks like ok, almost same parameters.
Any suggestion will'be appreciated.
Regards, Case
On Friday 22 June 2007, case wrote:
Hobbit server 4.2.0 running on RHEL4, BB client 1.08d on Windows 2003 servers.
There're no such columns displayed , e.g. "cpu","disk","procs","svcs" for Windows 2003 (servers) clients. Only three columns, or "conn", "info","trends" displayed. no firewall between them. These are the default colums generated by the hobbit servers. The other columns are send by a hobbit client (bbwin) running on the windows servers.
So bbwin is not sending anything to the hobbit server. You can check the network with telnet. Try to telnet from the windows box to the hobbit server on port 1984.
Stef
Hi Stef, Thanks for support.
I mean no icons or contents displayed in these columns, such as green icons. Network connection is ok.
Thanks, Case
----- Original Message ----- From: "Stef Coene" <stef.coene at docum.org> To: <hobbit at hswn.dk> Sent: Friday, June 22, 2007 2:59 PM Subject: Re: [hobbit] Why no columns "cpu","disk","procs", "svcs" displayed for Windows 2003 clients on web page of hobbit server?
On Friday 22 June 2007, case wrote:
Hobbit server 4.2.0 running on RHEL4, BB client 1.08d on Windows 2003 servers.
There're no such columns displayed , e.g. "cpu","disk","procs","svcs" for Windows 2003 (servers) clients. Only three columns, or "conn", "info","trends" displayed. no firewall between them. These are the default colums generated by the hobbit servers. The other columns are send by a hobbit client (bbwin) running on the windows servers. So bbwin is not sending anything to the hobbit server. You can check the network with telnet. Try to telnet from the windows box to the hobbit server on port 1984.
Stef
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
On Friday 22 June 2007, case wrote:
Hi Stef, Thanks for support.
I mean no icons or contents displayed in these columns, such as green icons. Network connection is ok. Network information is coming from the hobbit server. The other information is coming from the client running on the windows server. So you have to check if the client is runnning and if it is able to send something to the hobbit server. Also, make sure the name that the client is using is the same as the name in the bb-hosts file.
Stef
Check you hobbit log file
-----Original Message----- From: Stef Coene [mailto:stef.coene at docum.org] Sent: Friday, June 22, 2007 3:00 AM To: hobbit at hswn.dk Subject: Re: [hobbit] Why no columns "cpu","disk","procs", "svcs" displayed for Windows 2003 clients on web page of hobbit server?
On Friday 22 June 2007, case wrote:
Hobbit server 4.2.0 running on RHEL4, BB client 1.08d on Windows 2003 servers.
There're no such columns displayed , e.g. "cpu","disk","procs","svcs" for Windows 2003 (servers) clients. Only three columns, or "conn", "info","trends" displayed. no firewall between them. These are the default colums generated by the hobbit servers. The other columns are send by a hobbit client (bbwin) running on the windows servers.
So bbwin is not sending anything to the hobbit server. You can check the network with telnet. Try to telnet from the windows box to the hobbit server on port 1984.
Stef
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
Hi all,
someone have startup script for client on hpux?
thanks
Marco
On Fri, June 22, 2007 03:26, Marco Avvisano wrote:
Hi all,
someone have startup script for client on hpux?
Here's the one for 11.11 from the depot at razorsedge.org:
#!/sbin/sh
hobbit-client This shell script takes care of starting and stopping
the hobbit client.
NOTE: This script is not configurable! Any changes made to this
script will be overwritten when you upgrade.
PATH=/usr/sbin:/usr/bin:/sbin export PATH
rval=0
Check the exit value of a command run by this script. If non-zero, the
exit code is echoed to the log file and the return value of this script
is set to indicate failure.
set_return() { x=$? if [ $x -ne 0 ]; then echo "EXIT CODE: $x" rval=1 # script FAILed fi }
RE_check() { if [ "$HOBBIT_SERVERS" = "" ]; then echo "Please configure HOBBIT_SERVERS in /etc/rc.config.d/hobbit-client" exit 1 fi }
RE_prestart() { DMNOPTS="" set $HOBBIT_SERVERS if [ $# -eq 1 ]; then echo "BBDISP=\"$HOBBIT_SERVERS\""
${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg echo "BBDISPLAYS=\"\""
${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg else echo "BBDISP=\"0.0.0.0\"" ${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg echo "BBDISPLAYS=\"$HOBBIT_SERVERS\"" ${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg fi if [ "$HOBBIT_CLIENTHOSTNAME" != "" ]; then DMNOPTS="${DMNOPTS} --hostname=${HOBBIT_CLIENTHOSTNAME}" fi if [ "$HOBBIT_CLIENTOS" != "" ]; then DMNOPTS="${DMNOPTS} --os=${HOBBIT_CLIENTOS}" fi }
RE_start() { RE_check RE_prestart # Start daemons. su $HOBBIT_USER -c "$HOBBIT_DAEMON $DMNOPTS start" set_return return $rval }
RE_stop() { RE_check # Stop daemons. su $HOBBIT_USER -c "$HOBBIT_DAEMON stop" set_return return $rval }
RE_restart() { RE_check RE_prestart # Restart daemons. su $HOBBIT_USER -c "$HOBBIT_DAEMON $DMNOPTS restart" set_return return $rval }
case $1 in 'start_msg') echo "Starting the Hobbit Monitoring Client" ;;
'stop_msg') echo "Stopping the Hobbit Monitoring Client" ;;
'start')
# source the system configuration variables
if [ -f /etc/rc.config ] ; then
. /etc/rc.config
else
echo "ERROR: /etc/rc.config defaults file MISSING"
fi
# Check to see if this script is allowed to run...
if [ "$HOBBIT_CLIENT_START" != 1 ]; then
rval=2
else
# Execute the commands to start your subsystem
RE_start
rval=$?
fi
;;
'stop') # source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi
# Check to see if this script is allowed to run...
if [ "$HOBBIT_CLIENT_START" != 1 ]; then
rval=2
else
# Execute the commands to stop your subsystem
RE_stop
rval=$?
fi
;;
'restart') # source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi
# Check to see if this script is allowed to run...
if [ "$HOBBIT_CLIENT_START" != 1 ]; then
rval=2
else
# Execute the commands to restart your subsystem
RE_restart
rval=$?
fi
;;
'condrestart') # source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi
# Check to see if this script is allowed to run...
if [ "$HOBBIT_CLIENT_START" != 1 ]; then
rval=2
else
# Execute the commands to restart your subsystem
if ps -fu $HOBBIT_USER | grep -q
[h]obbit/client/bin/hobbitlaunch; then RE_restart rval=$? fi fi ;;
*) echo "usage: $0 {start|stop|start_msg|stop_msg|restart|condrestart}" rval=1 ;; esac
exit $rval
Thanks,
Marco
----- Original Message ----- From: "Hobbit User" <hobbit at epperson.homelinux.net> To: <hobbit at hswn.dk> Sent: Friday, June 22, 2007 2:20 PM Subject: Re: [hobbit] hobbit client - startup script for hpux
On Fri, June 22, 2007 03:26, Marco Avvisano wrote:
Hi all,
someone have startup script for client on hpux?
Here's the one for 11.11 from the depot at razorsedge.org:
#!/sbin/sh
hobbit-client This shell script takes care of starting and stopping
the hobbit client.
NOTE: This script is not configurable! Any changes made to this
script will be overwritten when you upgrade.
PATH=/usr/sbin:/usr/bin:/sbin export PATH
rval=0
Check the exit value of a command run by this script. If non-zero, the
exit code is echoed to the log file and the return value of this script
is set to indicate failure.
set_return() { x=$? if [ $x -ne 0 ]; then echo "EXIT CODE: $x" rval=1 # script FAILed fi }
RE_check() { if [ "$HOBBIT_SERVERS" = "" ]; then echo "Please configure HOBBIT_SERVERS in /etc/rc.config.d/hobbit-client" exit 1 fi }
RE_prestart() { DMNOPTS="" set $HOBBIT_SERVERS if [ $# -eq 1 ]; then echo "BBDISP=\"$HOBBIT_SERVERS\""
${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg echo "BBDISPLAYS=\"\""
${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg else echo "BBDISP=\"0.0.0.0\"" ${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg echo "BBDISPLAYS=\"$HOBBIT_SERVERS\"" ${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg fi if [ "$HOBBIT_CLIENTHOSTNAME" != "" ]; then DMNOPTS="${DMNOPTS} --hostname=${HOBBIT_CLIENTHOSTNAME}" fi if [ "$HOBBIT_CLIENTOS" != "" ]; then DMNOPTS="${DMNOPTS} --os=${HOBBIT_CLIENTOS}" fi }
RE_start() { RE_check RE_prestart # Start daemons. su $HOBBIT_USER -c "$HOBBIT_DAEMON $DMNOPTS start" set_return return $rval }
RE_stop() { RE_check # Stop daemons. su $HOBBIT_USER -c "$HOBBIT_DAEMON stop" set_return return $rval }
RE_restart() { RE_check RE_prestart # Restart daemons. su $HOBBIT_USER -c "$HOBBIT_DAEMON $DMNOPTS restart" set_return return $rval }
case $1 in 'start_msg') echo "Starting the Hobbit Monitoring Client" ;;
'stop_msg') echo "Stopping the Hobbit Monitoring Client" ;;
'start')
# source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi # Check to see if this script is allowed to run... if [ "$HOBBIT_CLIENT_START" != 1 ]; then rval=2 else # Execute the commands to start your subsystem RE_start rval=$? fi ;;'stop') # source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi
# Check to see if this script is allowed to run... if [ "$HOBBIT_CLIENT_START" != 1 ]; then rval=2 else # Execute the commands to stop your subsystem RE_stop rval=$? fi ;;'restart') # source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi
# Check to see if this script is allowed to run... if [ "$HOBBIT_CLIENT_START" != 1 ]; then rval=2 else # Execute the commands to restart your subsystem RE_restart rval=$? fi ;;'condrestart') # source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi
# Check to see if this script is allowed to run... if [ "$HOBBIT_CLIENT_START" != 1 ]; then rval=2 else # Execute the commands to restart your subsystem if ps -fu $HOBBIT_USER | grep -q[h]obbit/client/bin/hobbitlaunch; then RE_restart rval=$? fi fi ;;
*) echo "usage: $0 {start|stop|start_msg|stop_msg|restart|condrestart}" rval=1 ;; esac
exit $rval
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
i have tried to find the depot for hp 11.11 on razorsedge.org, with no fortune ... could you send me the url to download it? thanks
Marco
----- Original Message ----- From: "Hobbit User" <hobbit at epperson.homelinux.net> To: <hobbit at hswn.dk> Sent: Friday, June 22, 2007 2:20 PM Subject: Re: [hobbit] hobbit client - startup script for hpux
On Fri, June 22, 2007 03:26, Marco Avvisano wrote:
Hi all,
someone have startup script for client on hpux?
Here's the one for 11.11 from the depot at razorsedge.org:
#!/sbin/sh
hobbit-client This shell script takes care of starting and stopping
the hobbit client.
NOTE: This script is not configurable! Any changes made to this
script will be overwritten when you upgrade.
PATH=/usr/sbin:/usr/bin:/sbin export PATH
rval=0
Check the exit value of a command run by this script. If non-zero, the
exit code is echoed to the log file and the return value of this script
is set to indicate failure.
set_return() { x=$? if [ $x -ne 0 ]; then echo "EXIT CODE: $x" rval=1 # script FAILed fi }
RE_check() { if [ "$HOBBIT_SERVERS" = "" ]; then echo "Please configure HOBBIT_SERVERS in /etc/rc.config.d/hobbit-client" exit 1 fi }
RE_prestart() { DMNOPTS="" set $HOBBIT_SERVERS if [ $# -eq 1 ]; then echo "BBDISP=\"$HOBBIT_SERVERS\""
${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg echo "BBDISPLAYS=\"\""
${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg else echo "BBDISP=\"0.0.0.0\"" ${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg echo "BBDISPLAYS=\"$HOBBIT_SERVERS\"" ${HOBBIT_PREFIX}/var/run/hobbitclient-runtime.cfg fi if [ "$HOBBIT_CLIENTHOSTNAME" != "" ]; then DMNOPTS="${DMNOPTS} --hostname=${HOBBIT_CLIENTHOSTNAME}" fi if [ "$HOBBIT_CLIENTOS" != "" ]; then DMNOPTS="${DMNOPTS} --os=${HOBBIT_CLIENTOS}" fi }
RE_start() { RE_check RE_prestart # Start daemons. su $HOBBIT_USER -c "$HOBBIT_DAEMON $DMNOPTS start" set_return return $rval }
RE_stop() { RE_check # Stop daemons. su $HOBBIT_USER -c "$HOBBIT_DAEMON stop" set_return return $rval }
RE_restart() { RE_check RE_prestart # Restart daemons. su $HOBBIT_USER -c "$HOBBIT_DAEMON $DMNOPTS restart" set_return return $rval }
case $1 in 'start_msg') echo "Starting the Hobbit Monitoring Client" ;;
'stop_msg') echo "Stopping the Hobbit Monitoring Client" ;;
'start')
# source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi # Check to see if this script is allowed to run... if [ "$HOBBIT_CLIENT_START" != 1 ]; then rval=2 else # Execute the commands to start your subsystem RE_start rval=$? fi ;;'stop') # source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi
# Check to see if this script is allowed to run... if [ "$HOBBIT_CLIENT_START" != 1 ]; then rval=2 else # Execute the commands to stop your subsystem RE_stop rval=$? fi ;;'restart') # source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi
# Check to see if this script is allowed to run... if [ "$HOBBIT_CLIENT_START" != 1 ]; then rval=2 else # Execute the commands to restart your subsystem RE_restart rval=$? fi ;;'condrestart') # source the system configuration variables if [ -f /etc/rc.config ] ; then . /etc/rc.config else echo "ERROR: /etc/rc.config defaults file MISSING" fi
# Check to see if this script is allowed to run... if [ "$HOBBIT_CLIENT_START" != 1 ]; then rval=2 else # Execute the commands to restart your subsystem if ps -fu $HOBBIT_USER | grep -q[h]obbit/client/bin/hobbitlaunch; then RE_restart rval=$? fi fi ;;
*) echo "usage: $0 {start|stop|start_msg|stop_msg|restart|condrestart}" rval=1 ;; esac
exit $rval
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
On Thu, June 28, 2007 05:56, Marco Avvisano wrote:
i have tried to find the depot for hp 11.11 on razorsedge.org, with no fortune ... could you send me the url to download it? thanks
First hit for Google search "site:www.razorsedge.org hpux" is http://www.razorsedge.org/~mike/software/hobbit/hpux/
Monolithic packages, i.e. server and client together.
On Fri, Jun 22, 2007 at 11:26:34AM +0800, case wrote:
Hobbit server 4.2.0 running on RHEL4, BB client 1.08d on Windows 2003 servers.
There're no such columns displayed , e.g. "cpu","disk","procs","svcs" for Windows 2003 (servers) clients.
Check that your Win2003 clients are reporting with the same name as what you have in bb-hosts. Most often the problem is due to one of them using a fully-qualified domain name, and the other just using the plain hostname.
You can see it if the servers appear in the "Ghost Clients" report.
Regards, Henrik
participants (6)
-
casedj@21cn.com
-
henrik@hswn.dk
-
hobbit@epperson.homelinux.net
-
marco.avvisano@regione.toscana.it
-
stef.coene@docum.org
-
uma.bandi@ge.com