blob: c56da626d2c0804bce98c51dbc450c79d826c83b (
plain)
1 # This is config file for ZABBIX server process
2 # To get more information about ZABBIX,
3 # go http://www.zabbix.com
4
5 ############ GENERAL PARAMETERS #################
6
7 # This defines unique NodeID in distributed setup,
8 # Default value 0 (standalone server)
9 # This parameter must be between 0 and 999
10 #NodeID=0
11
12 # Number of pre-forked instances of pollers
13 # Default value is 5
14 # This parameter must be between 0 and 255
15 #StartPollers=5
16
17 # Number of pre-forked instances of IPMI pollers
18 # Default value is 0
19 # This parameter must be between 0 and 255
20 #StartIPMIPollers=0
21
22 # Number of pre-forked instances of pollers for unreachable hosts
23 # Default value is 1
24 # This parameter must be between 0 and 255
25 #StartPollersUnreachable=1
26
27 # Number of pre-forked instances of trappers
28 # Default value is 5
29 # This parameter must be between 0 and 255
30 #StartTrappers=5
31
32 # Number of pre-forked instances of ICMP pingers
33 # Default value is 1
34 # This parameter must be between 0 and 255
35 #StartPingers=1
36
37 # Number of pre-forked instances of discoverers
38 # Default value is 1
39 # This parameter must be between 0 and 255
40 #StartDiscoverers=1
41
42 # Number of pre-forked instances of HTTP pollers
43 # Default value is 1
44 # This parameter must be between 0 and 255
45 #StartHTTPPollers=1
46
47 # Listen port for trapper. Default port number is 10051. This parameter
48 # must be between 1024 and 32767
49 #ListenPort=10051
50
51 # Source IP address for outgouing connections
52 #SourceIP=
53
54 # Listen interface for trapper. Trapper will listen all network interfaces
55 # if this parameter is missing.
56 #ListenIP=127.0.0.1
57
58 # How often ZABBIX will perform housekeeping procedure
59 # (in hours)
60 # Default value is 1 hour
61 # Housekeeping is removing unnecessary information from
62 # tables history, alert, and alarms
63 # This parameter must be between 1 and 24
64 #HousekeepingFrequency=1
65
66 # How often ZABBIX will try to send unsent alerts
67 # (in seconds)
68 # Default value is 30 seconds
69 #SenderFrequency=30
70
71 # Uncomment this line to disable housekeeping procedure
72 #DisableHousekeeping=1
73
74 # Specifies debug level
75 # 0 - debug is not created
76 # 1 - critical information
77 # 2 - error information
78 # 3 - warnings (default)
79 # 4 - for debugging (produces lots of information)
80 #DebugLevel=3
81
82 # Specifies how long we wait for agent response (in sec)
83 # Must be between 1 and 30
84 Timeout=5
85
86 # Specifies how many seconds trapper may spend processing new data
87 # Must be between 1 and 30
88 #TrapperTimeout=5
89
90 # After how many seconds of unreachability treat a host as unavailable
91 #UnreachablePeriod=45
92
93 # How ofter check host for availability during the unavailability period
94 #UnavailableDelay=60
95
96 # Name of PID file
97 PidFile=/var/run/zabbix_server/zabbix_server.pid
98
99 # Name of log file
100 # If not set, syslog is used
101 LogFile=/var/log/zabbix/zabbix_server.log
102
103 # Maximum size of log file in MB. Set to 0 to disable automatic log rotation.
104 LogFileSize=5
105
106 # Location for custom alert scripts
107 AlertScriptsPath=/home/zabbix/bin/
108
109 # Location of external scripts
110 #ExternalScripts=/etc/zabbix/externalscripts
111
112 # Location of 'fping. Default is /usr/sbin/fping
113 # Make sure that fping binary has root permissions and SUID flag set
114 #FpingLocation=/usr/sbin/fping
115
116 # Location of fping6. Default is /usr/sbin/fping6
117 # Make sure that fping binary has root permissions and SUID flag set
118 #Fping6Location=/usr/sbin/fping6
119
120 # Temporary directory. Default is /tmp
121 #TmpDir=/tmp
122
123 # Frequency of ICMP pings (item keys 'icmpping' and 'icmppingsec'). Defauls is 60 seconds.
124 #PingerFrequency=60
125
126 # Database host name
127 # Default is localhost
128 #DBHost=localhost
129
130 # Database name
131 # SQLite3 note: path to database file must be provided. DBUser and DBPassword are ignored.
132 DBName=zabbix
133
134 # Database user
135 DBUser=root
136
137 # Database password
138 # Comment this line if no password used
139 #DBPassword=<password>
140
141 # Connect to MySQL using Unix socket?
142 #DBSocket=/tmp/mysql.sock
|