1# This is a configuration file for Zabbix Java Gateway.
2# It is sourced by startup.sh and shutdown.sh scripts.
3
4### Option: zabbix.listenIP
5#	IP address to listen on.
6#
7# Mandatory: no
8# Default:
9# LISTEN_IP="0.0.0.0"
10
11### Option: zabbix.listenPort
12#	Port to listen on.
13#
14# Mandatory: no
15# Range: 1024-32767
16# Default:
17# LISTEN_PORT=10052
18
19### Option: zabbix.pidFile
20#	Name of PID file.
21#	If omitted, Zabbix Java Gateway is started as a console application.
22#
23# Mandatory: no
24# Default:
25# PID_FILE=
26
27PID_FILE="/var/run/zabbix/zabbix_java.pid"
28
29### Option: zabbix.startPollers
30#	Number of worker threads to start.
31#
32# Mandatory: no
33# Range: 1-1000
34# Default:
35# START_POLLERS=5
36
37### Option: zabbix.timeout
38#	How long to wait for network operations.
39#
40# Mandatory: no
41# Range: 1-30
42# Default:
43# TIMEOUT=3
44
45### Option: zabbix.propertiesFile
46#	Name of properties file. Can be used to set additional properties in a such way that they are not visible on
47#	a command line or to overwrite existing ones.
48# Mandatory: no
49# Default:
50# PROPERTIES_FILE=
51
52# uncomment to enable remote monitoring of the standard JMX objects on the Zabbix Java Gateway itself
53#JAVA_OPTIONS="$JAVA_OPTIONS -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=12345
54#	-Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
55#	-Dcom.sun.management.jmxremote.registry.ssl=false"
56