Hi, I 've got a few questions regarding the zabbix_server.conf file. I understand the most parts but there are a few things I do not know, I just don't have that much experience with linux yet :-P
There are a few lines in the configuration file I do not understand:
What are pre-forked instances of pollers? what's the difference between 5 and 10 pollers? whats the difference between StartIPMIPollers and StartPollers? I think it means how many threads will be started that poll the agents but I'm not 100 %sure. And what is the recommended way to use it?
What is meant by "Source IP"? I do not know what "Source IP" means. Could someone please explain that to me? And what is the default value for this item?
I think this means which network card is used for zabbix and if none is specified any of them is used, am I correct about this?
If I'm correct, the PID file contains the ID of the zabbix process, (PID = Process ID) my question about this is how to use it in windows? should I just change it to this?
What does this property accomplish? What is it used for?
Thank you
There are a few lines in the configuration file I do not understand:
Code:
# Number of pre-forked instances of pollers # Default value is 5 # This parameter must be between 0 and 255 #StartPollers=5 # Number of pre-forked instances of IPMI pollers # Default value is 0 # This parameter must be between 0 and 255 #StartIPMIPollers=0 # Number of pre-forked instances of pollers for unreachable hosts # Default value is 1 # This parameter must be between 0 and 255 #StartPollersUnreachable=1 # Number of pre-forked instances of trappers # Default value is 5 # This parameter must be between 0 and 255 #StartTrappers=5 # Number of pre-forked instances of ICMP pingers # Default value is 1 # This parameter must be between 0 and 255 #StartPingers=1 # Number of pre-forked instances of discoverers # Default value is 1 # This parameter must be between 0 and 255 #StartDiscoverers=1 # Number of pre-forked instances of HTTP pollers # Default value is 1 # This parameter must be between 0 and 255 #StartHTTPPollers=1
Code:
# Source IP address for outgouing connections #SourceIP=
Code:
# Listen interface for trapper. Trapper will listen all network interfaces # if this parameter is missing. #ListenIP=127.0.0.1
Code:
# Name of PID file PidFile=/var/tmp/zabbix_server.pid
Code:
PidFile=C:\Zabbix\zabbix_server.pid
Code:
# Temporary directory. Default is /tmp #TmpDir=/tmp
Thank you

Comment