PDA

View Full Version : How can I see zabbix_server running properly ?? I can't with nmap localhost...


fievel
11-06-2005, 19:28
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.

araw
12-06-2005, 15:32
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 ~]#

fievel
13-06-2005, 07:57
Thanks ! it was what i looking for.