Im using zabbix1.1Alpha10, and Debian Sarge.
Thanks :(
welshpjw
12-06-2005, 04:27
Not sure exactly what you hope to get from "nmap localhost"? But "netstat -ap|grep zabb" or a "ps -ef|grep zabb" from the localhost should provide you with alot.
A few more details of what you would like to do may help.
You can either learn to use nmap properly, or better yet use netcat to poll the agent to ensure it's responding properly.
[root ~]# nmap -sT -p 10050 127.0.0.1 | grep open
10050/tcp open zabbix_agent
[root ~]# echo "system[hostname]" | nc 127.0.0.1 10050
gwaihir.local
[root ~]#
Thanks ! it was what i looking for.