PDA

View Full Version : window client doesn't work, help!


frank
23-02-2005, 14:58
Hai there,

this is my first visit here and already a question.

I've installed zabbix on a Linux pc, and placed the w32.exe and the config file on my c:/ directory of my W2000 pc.
Configured in zabbix host as host.win32 template to IP of my w2000 pc, port 10005 and set to 'not monitored'. then went to items to see what's monitored.
everything is good, but then back in host-field it says "unreachable"


what am I doing wrong??
is my config file wrong???


Please help!! :( :( :(
this is the config file..

# This is config file for zabbix_agentd
# To get more information about Zabbix, go http://zabbix.sourceforge.net

############ GENERAL PARAMETERS #################

# IP address of Zabbix server. No spaces allowed.

Server=172.20.136.203

# Listen port. Default is 10000

ListenPort=10005

# IP address to bind agent
# If missing, bind to all available IPs

ListenIP=127.0.0.1

# Number of pre-forked instances of zabbix_agentd.
# Default value is 5
# This parameter must be between 1 and 16

#StartAgents=5

# Specifies debug level
# 0 - debug is not created
# 1 - critical information
# 2 - error information
# 3 - warnings (default)
# 4 - for debugging (produces lots of information)

#DebugLevel=3

# Name of PID file

#PidFile=/var/run/zabbix/zabbix_agentd.pid

ezzeddin
24-02-2005, 19:06
i have a problem qith a win32 agent, when a setup the agent it gets to monitor, but when i a start adding itmes it trun to unreachable, do you know how to fix this
:confused:

cooper
24-02-2005, 20:50
# IP address to bind agent
# If missing, bind to all available IPs

ListenIP=127.0.0.1



You have ListenIP configured to bind to the loopback address. As a result it will bind ONLY to the loopback. Agentd isn't even listening on your machines assigned IP. Comment out the ListenIP= line in agentd.conf and restart agentd. It will bind to ALL IPs on the client and your zabbix server should start pulling values.

cooper