Hi, I has been experienced a problem with this Zabbix agent.
Actually I have almost 130 Windows servers monitored with Zabbix, some with 64 bits processors and until now i did't have problems, but...
I has been triyin to install the zabbix agent on a server IBM 3950 with 8 processors, but the Zabbix agent simply hangs.
Debugging the agent i found that in main.cpp are a function defined like
//
// Initialization routine
//
BOOL Initialize(void)
Inside there are a line that is the last executed.
// Start TCP/IP listener and collector threads
_beginthread(CollectorThread,0,NULL);
WaitForSingleObject(eventCollectorStarted,INFINITE ); // Allow collector thread to initialize
Why, someone knows how to fix this????
Thanks in advance.
Actually I have almost 130 Windows servers monitored with Zabbix, some with 64 bits processors and until now i did't have problems, but...
I has been triyin to install the zabbix agent on a server IBM 3950 with 8 processors, but the Zabbix agent simply hangs.
Debugging the agent i found that in main.cpp are a function defined like
//
// Initialization routine
//
BOOL Initialize(void)
Inside there are a line that is the last executed.
// Start TCP/IP listener and collector threads
_beginthread(CollectorThread,0,NULL);
WaitForSingleObject(eventCollectorStarted,INFINITE ); // Allow collector thread to initialize
Why, someone knows how to fix this????
Thanks in advance.
Comment