move templates for consistency + update them
This commit is contained in:
parent
cf97a35336
commit
dacf3f1d8f
6 changed files with 980 additions and 111 deletions
54
templates/etc/zabbix/web/zabbix.conf.php.j2
Normal file
54
templates/etc/zabbix/web/zabbix.conf.php.j2
Normal file
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
// Zabbix GUI configuration file.
|
||||
|
||||
$DB['TYPE'] = 'MYSQL';
|
||||
$DB['SERVER'] = '{{ zabbix_server_db_host }}';
|
||||
$DB['PORT'] = '{{ zabbix_server_db_port }}';
|
||||
$DB['DATABASE'] = '{{ zabbix_server_db_name }}';
|
||||
$DB['USER'] = '{{ zabbix_server_db_user }}';
|
||||
$DB['PASSWORD'] = '{{ zabbix_server_db_passwd }}';
|
||||
|
||||
// Schema name. Used for PostgreSQL.
|
||||
$DB['SCHEMA'] = '';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = false;
|
||||
$DB['KEY_FILE'] = '';
|
||||
$DB['CERT_FILE'] = '';
|
||||
$DB['CA_FILE'] = '';
|
||||
$DB['VERIFY_HOST'] = false;
|
||||
$DB['CIPHER_LIST'] = '';
|
||||
|
||||
// Vault configuration. Used if database credentials are stored in Vault secrets manager.
|
||||
$DB['VAULT_URL'] = '';
|
||||
$DB['VAULT_DB_PATH'] = '';
|
||||
$DB['VAULT_TOKEN'] = '';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
// Uncomment and set to desired values to override Zabbix hostname/IP and port.
|
||||
// $ZBX_SERVER = '{{ zabbix_server_hostname }}';
|
||||
// $ZBX_SERVER_PORT = '{{ zabbix_server_listen_port }}';
|
||||
|
||||
$ZBX_SERVER_NAME = '{{ zabbix_server_hostname }}';
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Uncomment this block only if you are using Elasticsearch.
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
//$HISTORY['url'] = [
|
||||
// 'uint' => 'http://localhost:9200',
|
||||
// 'text' => 'http://localhost:9200'
|
||||
//];
|
||||
// Value types stored in Elasticsearch.
|
||||
//$HISTORY['types'] = ['uint', 'text'];
|
||||
|
||||
// Used for SAML authentication.
|
||||
// Uncomment to override the default paths to SP private key, SP and IdP X.509 certificates, and to set extra settings.
|
||||
//$SSO['SP_KEY'] = 'conf/certs/sp.key';
|
||||
//$SSO['SP_CERT'] = 'conf/certs/sp.crt';
|
||||
//$SSO['IDP_CERT'] = 'conf/certs/idp.crt';
|
||||
//$SSO['SETTINGS'] = [];
|
|
@ -59,16 +59,8 @@ UserParameter=lufi[*],cat /tmp/lufi_stats | grep $1 | cut -d' ' -f2-
|
|||
# PrivateBin
|
||||
UserParameter=privatebin[*],cat /tmp/bin_stats | grep $1 | cut -d' ' -f2-
|
||||
{% endif %}
|
||||
{% if item.name == 'framadate' %}
|
||||
# Framadate
|
||||
UserParameter=framadate[*],cat /tmp/framadate_stats | grep $1 | cut -d' ' -f2-
|
||||
{% endif %}
|
||||
{% if item.name == 'etherpad' %}
|
||||
# Etherpad
|
||||
UserParameter=etherpad[*],cat /tmp/pad_stats | grep $1 | cut -d' ' -f2-
|
||||
{% endif %}
|
||||
{% if item.name == 'ethercalc' %}
|
||||
# Ethercalc
|
||||
UserParameter=ethercalc[*],cat /tmp/ethercalc_stats | grep $1 | cut -d' ' -f2-
|
||||
{% endif %}
|
||||
{% endfor %}
|
|
@ -25,7 +25,7 @@ PidFile={{ zabbix_agent_pid }}
|
|||
### Option: LogFile
|
||||
# Log file name for LogType 'file' parameter.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Mandatory: yes, if LogType is set to file, otherwise no
|
||||
# Default:
|
||||
# LogFile=
|
||||
|
||||
|
@ -63,14 +63,33 @@ DebugLevel={{ zabbix_agent_debug_level }}
|
|||
# Default:
|
||||
# SourceIP=
|
||||
|
||||
### Option: EnableRemoteCommands
|
||||
# Whether remote commands from Zabbix server are allowed.
|
||||
# 0 - not allowed
|
||||
# 1 - allowed
|
||||
### Option: AllowKey
|
||||
# Allow execution of item keys matching pattern.
|
||||
# Multiple keys matching rules may be defined in combination with DenyKey.
|
||||
# Key pattern is wildcard expression, which support "*" character to match any number of any characters in certain position. It might be used in both key name and key arguments.
|
||||
# Parameters are processed one by one according their appearance order.
|
||||
# If no AllowKey or DenyKey rules defined, all keys are allowed.
|
||||
#
|
||||
# Mandatory: no
|
||||
|
||||
### Option: DenyKey
|
||||
# Deny execution of items keys matching pattern.
|
||||
# Multiple keys matching rules may be defined in combination with AllowKey.
|
||||
# Key pattern is wildcard expression, which support "*" character to match any number of any characters in certain position. It might be used in both key name and key arguments.
|
||||
# Parameters are processed one by one according their appearance order.
|
||||
# If no AllowKey or DenyKey rules defined, all keys are allowed.
|
||||
# Unless another system.run[*] rule is specified DenyKey=system.run[*] is added by default.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# EnableRemoteCommands=0
|
||||
# DenyKey=system.run[*]
|
||||
|
||||
### Option: EnableRemoteCommands - Deprecated, use AllowKey=system.run[*] or DenyKey=system.run[*] instead
|
||||
# Internal alias for AllowKey/DenyKey parameters depending on value:
|
||||
# 0 - DenyKey=system.run[*]
|
||||
# 1 - AllowKey=system.run[*]
|
||||
#
|
||||
# Mandatory: no
|
||||
|
||||
### Option: LogRemoteCommands
|
||||
# Enable logging of executed shell commands as warnings.
|
||||
|
@ -84,11 +103,14 @@ DebugLevel={{ zabbix_agent_debug_level }}
|
|||
##### Passive checks related
|
||||
|
||||
### Option: Server
|
||||
# List of comma delimited IP addresses (or hostnames) of Zabbix servers.
|
||||
# List of comma delimited IP addresses, optionally in CIDR notation, or DNS names of Zabbix servers and Zabbix proxies.
|
||||
# Incoming connections will be accepted only from the hosts listed here.
|
||||
# If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally.
|
||||
# If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally
|
||||
# and '::/0' will allow any IPv4 or IPv6 address.
|
||||
# '0.0.0.0/0' can be used to allow any IPv4 address.
|
||||
# Example: Server=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com
|
||||
#
|
||||
# Mandatory: no
|
||||
# Mandatory: yes, if StartAgents is not explicitly set to 0
|
||||
# Default:
|
||||
# Server=
|
||||
|
||||
|
@ -122,12 +144,25 @@ ListenPort={{ zabbix_agent_listen_port }}
|
|||
##### Active checks related
|
||||
|
||||
### Option: ServerActive
|
||||
# List of comma delimited IP:port (or hostname:port) pairs of Zabbix servers for active checks.
|
||||
# Zabbix server/proxy address or cluster configuration to get active checks from.
|
||||
# Server/proxy address is IP address or DNS name and optional port separated by colon.
|
||||
# Cluster configuration is one or more server addresses separated by semicolon.
|
||||
# Multiple Zabbix servers/clusters and Zabbix proxies can be specified, separated by comma.
|
||||
# More than one Zabbix proxy should not be specified from each Zabbix server/cluster.
|
||||
# If Zabbix proxy is specified then Zabbix server/cluster for that proxy should not be specified.
|
||||
# Multiple comma-delimited addresses can be provided to use several independent Zabbix servers in parallel. Spaces are allowed.
|
||||
# If port is not specified, default port is used.
|
||||
# IPv6 addresses must be enclosed in square brackets if port for that host is specified.
|
||||
# If port is not specified, square brackets for IPv6 addresses are optional.
|
||||
# If this parameter is not specified, active checks are disabled.
|
||||
# Example: ServerActive=127.0.0.1:20051,zabbix.domain,[::1]:30051,::1,[12fc::1]
|
||||
# Example for Zabbix proxy:
|
||||
# ServerActive=127.0.0.1:10051
|
||||
# Example for multiple servers:
|
||||
# ServerActive=127.0.0.1:20051,zabbix.domain,[::1]:30051,::1,[12fc::1]
|
||||
# Example for high availability:
|
||||
# ServerActive=zabbix.cluster.node1;zabbix.cluster.node2:20051;zabbix.cluster.node3
|
||||
# Example for high availability with two clusters and one server:
|
||||
# ServerActive=zabbix.cluster.node1;zabbix.cluster.node2:20051,zabbix.cluster2.node1;zabbix.cluster2.node2,zabbix.domain
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -136,8 +171,8 @@ ListenPort={{ zabbix_agent_listen_port }}
|
|||
ServerActive={{ zabbix_agent_server_address }}
|
||||
|
||||
### Option: Hostname
|
||||
# Unique, case sensitive hostname.
|
||||
# Required for active checks and must match hostname as configured on the server.
|
||||
# List of comma delimited unique, case sensitive hostnames.
|
||||
# Required for active checks and must match hostnames as configured on the server.
|
||||
# Value is acquired from HostnameItem if undefined.
|
||||
#
|
||||
# Mandatory: no
|
||||
|
@ -157,11 +192,11 @@ Hostname={{ inventory_hostname }}
|
|||
### Option: HostMetadata
|
||||
# Optional parameter that defines host metadata.
|
||||
# Host metadata is used at host auto-registration process.
|
||||
# An agent will issue an error and not start if the value is over limit of 255 characters.
|
||||
# An agent will issue an error and not start if the value is over limit of 2034 bytes.
|
||||
# If not defined, value will be acquired from HostMetadataItem.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-255 characters
|
||||
# Range: 0-2034 bytes
|
||||
# Default:
|
||||
# HostMetadata=
|
||||
|
||||
|
@ -169,20 +204,42 @@ Hostname={{ inventory_hostname }}
|
|||
# Optional parameter that defines an item used for getting host metadata.
|
||||
# Host metadata is used at host auto-registration process.
|
||||
# During an auto-registration request an agent will log a warning message if
|
||||
# the value returned by specified item is over limit of 255 characters.
|
||||
# the value returned by specified item is over limit of 65535 characters.
|
||||
# This option is only used when HostMetadata is not defined.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# HostMetadataItem=
|
||||
|
||||
### Option: HostInterface
|
||||
# Optional parameter that defines host interface.
|
||||
# Host interface is used at host auto-registration process.
|
||||
# An agent will issue an error and not start if the value is over limit of 255 characters.
|
||||
# If not defined, value will be acquired from HostInterfaceItem.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-255 characters
|
||||
# Default:
|
||||
# HostInterface=
|
||||
|
||||
### Option: HostInterfaceItem
|
||||
# Optional parameter that defines an item used for getting host interface.
|
||||
# Host interface is used at host auto-registration process.
|
||||
# During an auto-registration request an agent will log a warning message if
|
||||
# the value returned by specified item is over limit of 255 characters.
|
||||
# This option is only used when HostInterface is not defined.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# HostInterfaceItem=
|
||||
|
||||
### Option: RefreshActiveChecks
|
||||
# How often list of active checks is refreshed, in seconds.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 60-3600
|
||||
# Range: 1-86400
|
||||
# Default:
|
||||
# RefreshActiveChecks=120
|
||||
# RefreshActiveChecks=5
|
||||
|
||||
### Option: BufferSend
|
||||
# Do not keep data longer than N seconds in buffer.
|
||||
|
@ -212,6 +269,16 @@ Hostname={{ inventory_hostname }}
|
|||
# Default:
|
||||
# MaxLinesPerSecond=20
|
||||
|
||||
### Option: HeartbeatFrequency
|
||||
# Frequency of heartbeat messages in seconds.
|
||||
# Used for monitoring availability of active checks.
|
||||
# 0 - heartbeat messages disabled.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-3600
|
||||
# Default: 60
|
||||
# HeartbeatFrequency=
|
||||
|
||||
############ ADVANCED PARAMETERS #################
|
||||
|
||||
### Option: Alias
|
||||
|
@ -292,11 +359,22 @@ Include=/etc/zabbix/zabbix_agentd.d/*.conf
|
|||
# Default:
|
||||
# UserParameter=
|
||||
|
||||
### Option: UserParameterDir
|
||||
# Directory to execute UserParameter commands from. Only one entry is allowed.
|
||||
# When executing UserParameter commands the agent will change the working directory to the one
|
||||
# specified in the UserParameterDir option.
|
||||
# This way UserParameter commands can be specified using the relative ./ prefix.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# UserParameterDir=
|
||||
|
||||
####### LOADABLE MODULES #######
|
||||
|
||||
### Option: LoadModulePath
|
||||
# Full path to location of agent modules.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_agentd --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -304,8 +382,12 @@ Include=/etc/zabbix/zabbix_agentd.d/*.conf
|
|||
|
||||
### Option: LoadModule
|
||||
# Module to load at agent startup. Modules are used to extend functionality of the agent.
|
||||
# Format: LoadModule=<module.so>
|
||||
# The modules must be located in directory specified by LoadModulePath.
|
||||
# Formats:
|
||||
# LoadModule=<module.so>
|
||||
# LoadModule=<path/module.so>
|
||||
# LoadModule=</abs_path/module.so>
|
||||
# Either the module must be located in directory specified by LoadModulePath or the path must precede the module name.
|
||||
# If the preceding path is absolute (starts with '/') then LoadModulePath is ignored.
|
||||
# It is allowed to include multiple LoadModule parameters.
|
||||
#
|
||||
# Mandatory: no
|
||||
|
@ -352,14 +434,14 @@ Include=/etc/zabbix/zabbix_agentd.d/*.conf
|
|||
# TLSCRLFile=
|
||||
|
||||
### Option: TLSServerCertIssuer
|
||||
# Allowed server certificate issuer.
|
||||
# Allowed server certificate issuer.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSServerCertIssuer=
|
||||
|
||||
### Option: TLSServerCertSubject
|
||||
# Allowed server certificate subject.
|
||||
# Allowed server certificate subject.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -392,3 +474,81 @@ Include=/etc/zabbix/zabbix_agentd.d/*.conf
|
|||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSPSKFile=
|
||||
|
||||
####### For advanced users - TLS ciphersuite selection criteria #######
|
||||
|
||||
### Option: TLSCipherCert13
|
||||
# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3.
|
||||
# Override the default ciphersuite selection criteria for certificate-based encryption.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherCert13=
|
||||
|
||||
### Option: TLSCipherCert
|
||||
# GnuTLS priority string or OpenSSL (TLS 1.2) cipher string.
|
||||
# Override the default ciphersuite selection criteria for certificate-based encryption.
|
||||
# Example for GnuTLS:
|
||||
# NONE:+VERS-TLS1.2:+ECDHE-RSA:+RSA:+AES-128-GCM:+AES-128-CBC:+AEAD:+SHA256:+SHA1:+CURVE-ALL:+COMP-NULL:+SIGN-ALL:+CTYPE-X.509
|
||||
# Example for OpenSSL:
|
||||
# EECDH+aRSA+AES128:RSA+aRSA+AES128
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherCert=
|
||||
|
||||
### Option: TLSCipherPSK13
|
||||
# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3.
|
||||
# Override the default ciphersuite selection criteria for PSK-based encryption.
|
||||
# Example:
|
||||
# TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherPSK13=
|
||||
|
||||
### Option: TLSCipherPSK
|
||||
# GnuTLS priority string or OpenSSL (TLS 1.2) cipher string.
|
||||
# Override the default ciphersuite selection criteria for PSK-based encryption.
|
||||
# Example for GnuTLS:
|
||||
# NONE:+VERS-TLS1.2:+ECDHE-PSK:+PSK:+AES-128-GCM:+AES-128-CBC:+AEAD:+SHA256:+SHA1:+CURVE-ALL:+COMP-NULL:+SIGN-ALL
|
||||
# Example for OpenSSL:
|
||||
# kECDHEPSK+AES128:kPSK+AES128
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherPSK=
|
||||
|
||||
### Option: TLSCipherAll13
|
||||
# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3.
|
||||
# Override the default ciphersuite selection criteria for certificate- and PSK-based encryption.
|
||||
# Example:
|
||||
# TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherAll13=
|
||||
|
||||
### Option: TLSCipherAll
|
||||
# GnuTLS priority string or OpenSSL (TLS 1.2) cipher string.
|
||||
# Override the default ciphersuite selection criteria for certificate- and PSK-based encryption.
|
||||
# Example for GnuTLS:
|
||||
# NONE:+VERS-TLS1.2:+ECDHE-RSA:+RSA:+ECDHE-PSK:+PSK:+AES-128-GCM:+AES-128-CBC:+AEAD:+SHA256:+SHA1:+CURVE-ALL:+COMP-NULL:+SIGN-ALL:+CTYPE-X.509
|
||||
# Example for OpenSSL:
|
||||
# EECDH+aRSA+AES128:RSA+aRSA+AES128:kECDHEPSK+AES128:kPSK+AES128
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherAll=
|
||||
|
||||
####### For advanced users - TCP-related fine-tuning parameters #######
|
||||
|
||||
## Option: ListenBacklog
|
||||
# The maximum number of pending connections in the queue. This parameter is passed to
|
||||
# listen() function as argument 'backlog' (see "man listen").
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
|
||||
# Default: SOMAXCONN (hard-coded constant, depends on system)
|
||||
# ListenBacklog=
|
||||
|
|
@ -13,24 +13,24 @@
|
|||
ProxyMode={{ zabbix_proxy_mode }}
|
||||
|
||||
### Option: Server
|
||||
# IP address (or hostname) of Zabbix server.
|
||||
# Active proxy will get configuration data from the server.
|
||||
# For a proxy in the passive mode this parameter will be ignored.
|
||||
# If ProxyMode is set to active mode:
|
||||
# IP address or DNS name (address:port) or cluster (address:port;address2:port) of Zabbix server to get configuration data from and send data to.
|
||||
# If port is not specified, default port is used.
|
||||
# Cluster nodes need to be separated by semicolon.
|
||||
# If ProxyMode is set to passive mode:
|
||||
# List of comma delimited IP addresses, optionally in CIDR notation, or DNS names of Zabbix server.
|
||||
# Incoming connections will be accepted only from the addresses listed here.
|
||||
# If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally
|
||||
# and '::/0' will allow any IPv4 or IPv6 address.
|
||||
# '0.0.0.0/0' can be used to allow any IPv4 address.
|
||||
# Example: Server=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com
|
||||
#
|
||||
# Mandatory: yes (if ProxyMode is set to 0)
|
||||
# Mandatory: yes
|
||||
# Default:
|
||||
# Server=
|
||||
|
||||
Server={{ zabbix_proxy_master_server }}
|
||||
|
||||
### Option: ServerPort
|
||||
# Port of Zabbix trapper on Zabbix server.
|
||||
# For a proxy in the passive mode this parameter will be ignored.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1024-32767
|
||||
# Default:
|
||||
# ServerPort=10051
|
||||
|
||||
### Option: Hostname
|
||||
# Unique, case sensitive Proxy name. Make sure the Proxy name is known to the server!
|
||||
|
@ -77,7 +77,7 @@ ListenPort={{ zabbix_proxy_listen_port }}
|
|||
### Option: LogFile
|
||||
# Log file name for LogType 'file' parameter.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Mandatory: yes, if LogType is set to file, otherwise no
|
||||
# Default:
|
||||
# LogFile=
|
||||
|
||||
|
@ -108,6 +108,24 @@ LogFileSize={{ zabbix_proxy_file_size }}
|
|||
# Default:
|
||||
DebugLevel={{ zabbix_proxy_debug_level }}
|
||||
|
||||
### Option: EnableRemoteCommands
|
||||
# Whether remote commands from Zabbix server are allowed.
|
||||
# 0 - not allowed
|
||||
# 1 - allowed
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# EnableRemoteCommands=0
|
||||
|
||||
### Option: LogRemoteCommands
|
||||
# Enable logging of executed shell commands as warnings.
|
||||
# 0 - disabled
|
||||
# 1 - enabled
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# LogRemoteCommands=0
|
||||
|
||||
### Option: PidFile
|
||||
# Name of PID file.
|
||||
#
|
||||
|
@ -117,10 +135,22 @@ DebugLevel={{ zabbix_proxy_debug_level }}
|
|||
|
||||
PidFile=/var/run/zabbix/zabbix_proxy.pid
|
||||
|
||||
### Option: SocketDir
|
||||
# IPC socket directory.
|
||||
# Directory to store IPC sockets used by internal Zabbix services.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# SocketDir=/tmp
|
||||
|
||||
### NOTE: Support for Oracle DB is deprecated since Zabbix 7.0 and will be removed in future versions.
|
||||
|
||||
### Option: DBHost
|
||||
# Database host name.
|
||||
# If set to localhost, socket is used for MySQL.
|
||||
# If set to empty string, socket is used for PostgreSQL.
|
||||
# If set to empty string, the Net Service Name connection method is used to connect to Oracle database; also see
|
||||
# the TNS_ADMIN environment variable to specify the directory where the tnsnames.ora file is located.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -129,6 +159,9 @@ DBHost={{ zabbix_proxy_db_host }}
|
|||
### Option: DBName
|
||||
# Database name.
|
||||
# For SQLite3 path to database file must be provided. DBUser and DBPassword are ignored.
|
||||
# If the Net Service Name connection method is used to connect to Oracle database, specify the service name from
|
||||
# the tnsnames.ora file or set to empty string; also see the TWO_TASK environment variable if DBName is set to
|
||||
# empty string.
|
||||
# Warning: do not attempt to use the same database Zabbix server is using.
|
||||
#
|
||||
# Mandatory: yes
|
||||
|
@ -136,7 +169,7 @@ DBHost={{ zabbix_proxy_db_host }}
|
|||
DBName={{ zabbix_proxy_db_name }}
|
||||
|
||||
### Option: DBSchema
|
||||
# Schema name. Used for IBM DB2 and PostgreSQL.
|
||||
# Schema name. Used for PostgreSQL.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -161,14 +194,25 @@ DBPassword={{ zabbix_proxy_db_passwd }}
|
|||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# DBSocket=/tmp/mysql.sock
|
||||
# DBSocket=
|
||||
|
||||
# Option: DBPort
|
||||
# Database port when not using local socket. Ignored for SQLite.
|
||||
# If the Net Service Name connection method is used to connect to Oracle database, the port number from the
|
||||
# tnsnames.ora file will be used. The port number set here will be ignored.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default (for MySQL):
|
||||
# DBPort=3306
|
||||
# Default:
|
||||
# DBPort=
|
||||
|
||||
### Option: AllowUnsupportedDBVersions
|
||||
# Allow proxy to work with unsupported database versions.
|
||||
# 0 - do not allow
|
||||
# 1 - allow
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# AllowUnsupportedDBVersions=0
|
||||
|
||||
######### PROXY SPECIFIC PARAMETERS #############
|
||||
|
||||
|
@ -190,25 +234,49 @@ ProxyLocalBuffer={{ zabbix_proxy_local_buffer }}
|
|||
# Default:
|
||||
ProxyOfflineBuffer={{ zabbix_proxy_offline_buffer }}
|
||||
|
||||
### Option: HeartbeatFrequency
|
||||
# Frequency of heartbeat messages in seconds.
|
||||
# Used for monitoring availability of Proxy on server side.
|
||||
# 0 - heartbeat messages disabled.
|
||||
# For a proxy in the passive mode this parameter will be ignored.
|
||||
### Option: ProxyBufferMode
|
||||
# Specifies history, discovery and auto registration data storage mechanism:
|
||||
# disk - data are stored in database and uploaded from database
|
||||
# memory - data are stored in memory and uploaded from memory.
|
||||
# If buffer runs out of memory the old data will be discarded.
|
||||
# On shutdown the buffer is discarded.
|
||||
# hybrid - the proxy buffer normally works like in memory mode until it runs out of memory or
|
||||
# the oldest record exceeds the configured age. If that happens the buffer is flushed
|
||||
# to database and it works like in disk mode until all data have been uploaded and
|
||||
# it starts working with memory again. On shutdown the memory buffer is flushed
|
||||
# to database.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-3600
|
||||
# Values: disk, memory, hybrid
|
||||
# Default:
|
||||
HeartbeatFrequency={{ zabbix_proxy_heartbeat_freq }}
|
||||
# ProxyBufferMode=disk
|
||||
|
||||
### Option: ConfigFrequency
|
||||
ProxyMemoryBufferSize=16M
|
||||
|
||||
### Option: ProxyMemoryBufferAge
|
||||
# Maximum age of data in proxy memory buffer, in seconds.
|
||||
# When enabled (not zero) and records in proxy memory buffer are older, then it forces proxy buffer
|
||||
# to switch to database mode until all records are uploaded to server.
|
||||
# This parameter must be less or equal to ProxyOfflineBuffer parameter.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0,600-864000
|
||||
# Default:
|
||||
# ProxyMemoryBufferAge=0
|
||||
|
||||
### Option: ConfigFrequency - Deprecated, use ProxyConfigFrequency
|
||||
# How often proxy retrieves configuration data from Zabbix Server in seconds.
|
||||
# For a proxy in the passive mode this parameter will be ignored.
|
||||
# Mandatory: no
|
||||
|
||||
### Option: ProxyConfigFrequency
|
||||
# How often proxy retrieves configuration data from Zabbix Server in seconds.
|
||||
# For a proxy in the passive mode this parameter will be ignored.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1-3600*24*7
|
||||
# Default:
|
||||
ConfigFrequency={{ zabbix_proxy_config_freq }}
|
||||
ProxyConfigFrequency={{ zabbix_proxy_config_freq }}
|
||||
|
||||
### Option: DataSenderFrequency
|
||||
# Proxy will send collected data to the Server every N seconds.
|
||||
|
@ -229,14 +297,47 @@ DataSenderFrequency={{ zabbix_proxy_data_sernder_freq }}
|
|||
# Default:
|
||||
StartPollers={{ zabbix_proxy_start_pollers }}
|
||||
|
||||
### Option: StartAgentPollers
|
||||
# Number of pre-forked instances of asynchronous Zabbix agent pollers. Also see MaxConcurrentChecksPerPoller.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-1000
|
||||
# Default:
|
||||
# StartAgentPollers=1
|
||||
|
||||
### Option: StartHTTPAgentPollers
|
||||
# Number of pre-forked instances of asynchronous HTTP agent pollers. Also see MaxConcurrentChecksPerPoller.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-1000
|
||||
# Default:
|
||||
# StartHTTPAgentPollers=1
|
||||
|
||||
### Option: MaxConcurrentChecksPerPoller
|
||||
# Maximum number of asynchronous checks that can be executed at once by each HTTP agent poller or agent poller.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1-1000
|
||||
# Default:
|
||||
# MaxConcurrentChecksPerPoller=1000
|
||||
|
||||
### Option: StartIPMIPollers
|
||||
# Number of pre-forked instances of IPMI pollers.
|
||||
# The IPMI manager process is automatically started when at least one IPMI poller is started.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-1000
|
||||
# Default:
|
||||
StartIPMIPollers={{ zabbix_proxy_ipmi_pollers }}
|
||||
|
||||
### Option: StartPreprocessors
|
||||
# Number of pre-started instances of preprocessing workers.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1-1000
|
||||
# Default:
|
||||
# StartPreprocessors=3
|
||||
|
||||
### Option: StartPollersUnreachable
|
||||
# Number of pre-forked instances of pollers for unreachable hosts (including IPMI and Java).
|
||||
# At least one poller for unreachable hosts must be running if regular, IPMI or Java pollers
|
||||
|
@ -265,12 +366,12 @@ StartIPMIPollers={{ zabbix_proxy_ipmi_pollers }}
|
|||
# StartPingers=1
|
||||
|
||||
### Option: StartDiscoverers
|
||||
# Number of pre-forked instances of discoverers.
|
||||
# Number of pre-started instances of discovery workers.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-250
|
||||
# Range: 0-1000
|
||||
# Default:
|
||||
# StartDiscoverers=1
|
||||
# StartDiscoverers=5
|
||||
|
||||
### Option: StartHTTPPollers
|
||||
# Number of pre-forked instances of HTTP pollers.
|
||||
|
@ -390,7 +491,7 @@ StartIPMIPollers={{ zabbix_proxy_ipmi_pollers }}
|
|||
# Shared memory size, for storing hosts and items data.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 128K-8G
|
||||
# Range: 128K-64G
|
||||
# Default:
|
||||
# CacheSize=8M
|
||||
|
||||
|
@ -462,9 +563,18 @@ Timeout=4
|
|||
# Default:
|
||||
# UnreachableDelay=15
|
||||
|
||||
## Option: StartODBCPollers
|
||||
# Number of pre-forked ODBC poller instances.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-1000
|
||||
# Default:
|
||||
# StartODBCPollers=1
|
||||
|
||||
### Option: ExternalScripts
|
||||
# Full path to location of external scripts.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_proxy --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -553,6 +663,8 @@ LogSlowQueries=3000
|
|||
### Option: SSLCertLocation
|
||||
# Location of SSL client certificates.
|
||||
# This parameter is used only in web monitoring.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_proxy --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -561,6 +673,8 @@ LogSlowQueries=3000
|
|||
### Option: SSLKeyLocation
|
||||
# Location of private keys for SSL client certificates.
|
||||
# This parameter is used only in web monitoring.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_proxy --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -569,7 +683,7 @@ LogSlowQueries=3000
|
|||
### Option: SSLCALocation
|
||||
# Location of certificate authority (CA) files for SSL server certificate verification.
|
||||
# If not set, system-wide directory will be used.
|
||||
# This parameter is used only in web monitoring.
|
||||
# This parameter is used in web monitoring, HTTP agent items and for communication with Vault.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -580,6 +694,7 @@ LogSlowQueries=3000
|
|||
### Option: LoadModulePath
|
||||
# Full path to location of proxy modules.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_proxy --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -587,14 +702,32 @@ LogSlowQueries=3000
|
|||
|
||||
### Option: LoadModule
|
||||
# Module to load at proxy startup. Modules are used to extend functionality of the proxy.
|
||||
# Format: LoadModule=<module.so>
|
||||
# The modules must be located in directory specified by LoadModulePath.
|
||||
# Formats:
|
||||
# LoadModule=<module.so>
|
||||
# LoadModule=<path/module.so>
|
||||
# LoadModule=</abs_path/module.so>
|
||||
# Either the module must be located in directory specified by LoadModulePath or the path must precede the module name.
|
||||
# If the preceding path is absolute (starts with '/') then LoadModulePath is ignored.
|
||||
# It is allowed to include multiple LoadModule parameters.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# LoadModule=
|
||||
|
||||
### Option: StatsAllowedIP
|
||||
# List of comma delimited IP addresses, optionally in CIDR notation, or DNS names of external Zabbix instances.
|
||||
# Stats request will be accepted only from the addresses listed here. If this parameter is not set no stats requests
|
||||
# will be accepted.
|
||||
# If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally
|
||||
# and '::/0' will allow any IPv4 or IPv6 address.
|
||||
# '0.0.0.0/0' can be used to allow any IPv4 address.
|
||||
# Example: StatsAllowedIP=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# StatsAllowedIP=
|
||||
#StatsAllowedIP=127.0.0.1
|
||||
|
||||
####### TLS-RELATED PARAMETERS #######
|
||||
|
||||
### Option: TLSConnect
|
||||
|
@ -635,14 +768,14 @@ LogSlowQueries=3000
|
|||
# TLSCRLFile=
|
||||
|
||||
### Option: TLSServerCertIssuer
|
||||
# Allowed server certificate issuer.
|
||||
# Allowed server certificate issuer.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSServerCertIssuer=
|
||||
|
||||
### Option: TLSServerCertSubject
|
||||
# Allowed server certificate subject.
|
||||
# Allowed server certificate subject.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -675,3 +808,194 @@ LogSlowQueries=3000
|
|||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSPSKFile=
|
||||
|
||||
####### For advanced users - TLS ciphersuite selection criteria #######
|
||||
|
||||
### Option: TLSCipherCert13
|
||||
# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3.
|
||||
# Override the default ciphersuite selection criteria for certificate-based encryption.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherCert13=
|
||||
|
||||
### Option: TLSCipherCert
|
||||
# GnuTLS priority string or OpenSSL (TLS 1.2) cipher string.
|
||||
# Override the default ciphersuite selection criteria for certificate-based encryption.
|
||||
# Example for GnuTLS:
|
||||
# NONE:+VERS-TLS1.2:+ECDHE-RSA:+RSA:+AES-128-GCM:+AES-128-CBC:+AEAD:+SHA256:+SHA1:+CURVE-ALL:+COMP-NULL:+SIGN-ALL:+CTYPE-X.509
|
||||
# Example for OpenSSL:
|
||||
# EECDH+aRSA+AES128:RSA+aRSA+AES128
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherCert=
|
||||
|
||||
### Option: TLSCipherPSK13
|
||||
# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3.
|
||||
# Override the default ciphersuite selection criteria for PSK-based encryption.
|
||||
# Example:
|
||||
# TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherPSK13=
|
||||
|
||||
### Option: TLSCipherPSK
|
||||
# GnuTLS priority string or OpenSSL (TLS 1.2) cipher string.
|
||||
# Override the default ciphersuite selection criteria for PSK-based encryption.
|
||||
# Example for GnuTLS:
|
||||
# NONE:+VERS-TLS1.2:+ECDHE-PSK:+PSK:+AES-128-GCM:+AES-128-CBC:+AEAD:+SHA256:+SHA1:+CURVE-ALL:+COMP-NULL:+SIGN-ALL
|
||||
# Example for OpenSSL:
|
||||
# kECDHEPSK+AES128:kPSK+AES128
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherPSK=
|
||||
|
||||
### Option: TLSCipherAll13
|
||||
# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3.
|
||||
# Override the default ciphersuite selection criteria for certificate- and PSK-based encryption.
|
||||
# Example:
|
||||
# TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherAll13=
|
||||
|
||||
### Option: TLSCipherAll
|
||||
# GnuTLS priority string or OpenSSL (TLS 1.2) cipher string.
|
||||
# Override the default ciphersuite selection criteria for certificate- and PSK-based encryption.
|
||||
# Example for GnuTLS:
|
||||
# NONE:+VERS-TLS1.2:+ECDHE-RSA:+RSA:+ECDHE-PSK:+PSK:+AES-128-GCM:+AES-128-CBC:+AEAD:+SHA256:+SHA1:+CURVE-ALL:+COMP-NULL:+SIGN-ALL:+CTYPE-X.509
|
||||
# Example for OpenSSL:
|
||||
# EECDH+aRSA+AES128:RSA+aRSA+AES128:kECDHEPSK+AES128:kPSK+AES128
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherAll=
|
||||
|
||||
### Option: DBTLSConnect
|
||||
# Setting this option enforces to use TLS connection to database.
|
||||
# required - connect using TLS
|
||||
# verify_ca - connect using TLS and verify certificate
|
||||
# verify_full - connect using TLS, verify certificate and verify that database identity specified by DBHost
|
||||
# matches its certificate
|
||||
# On MySQL starting from 5.7.11 and PostgreSQL following values are supported: "required", "verify_ca" and
|
||||
# "verify_full".
|
||||
# On MariaDB starting from version 10.2.6 "required" and "verify_full" values are supported.
|
||||
# Default is not to set any option and behavior depends on database configuration
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# DBTLSConnect=
|
||||
|
||||
### Option: DBTLSCAFile
|
||||
# Full pathname of a file containing the top-level CA(s) certificates for database certificate verification.
|
||||
# Supported only for MySQL and PostgreSQL
|
||||
#
|
||||
# Mandatory: no
|
||||
# (yes, if DBTLSConnect set to one of: verify_ca, verify_full)
|
||||
# Default:
|
||||
# DBTLSCAFile=
|
||||
|
||||
### Option: DBTLSCertFile
|
||||
# Full pathname of file containing Zabbix proxy certificate for authenticating to database.
|
||||
# Supported only for MySQL and PostgreSQL
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# DBTLSCertFile=
|
||||
|
||||
### Option: DBTLSKeyFile
|
||||
# Full pathname of file containing the private key for authenticating to database.
|
||||
# Supported only for MySQL and PostgreSQL
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# DBTLSKeyFile=
|
||||
|
||||
### Option: DBTLSCipher
|
||||
# The list of encryption ciphers that Zabbix proxy permits for TLS protocols up through TLSv1.2
|
||||
# Supported only for MySQL
|
||||
#
|
||||
# Mandatory no
|
||||
# Default:
|
||||
# DBTLSCipher=
|
||||
|
||||
### Option: DBTLSCipher13
|
||||
# The list of encryption ciphersuites that Zabbix proxy permits for TLSv1.3 protocol
|
||||
# Supported only for MySQL, starting from version 8.0.16
|
||||
#
|
||||
# Mandatory no
|
||||
# Default:
|
||||
# DBTLSCipher13=
|
||||
|
||||
### Option: Vault
|
||||
# Specifies vault:
|
||||
# HashiCorp - HashiCorp KV Secrets Engine - Version 2
|
||||
# CyberArk - CyberArk Central Credential Provider
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# Vault=HashiCorp
|
||||
|
||||
### Option: VaultToken
|
||||
# Vault authentication token that should have been generated exclusively for Zabbix proxy with read only permission to path
|
||||
# specified in optional VaultDBPath configuration parameter.
|
||||
# It is an error if VaultToken and VAULT_TOKEN environment variable are defined at the same time.
|
||||
#
|
||||
# Mandatory: no
|
||||
# (yes, if Vault is explicitly set to HashiCorp)
|
||||
# Default:
|
||||
# VaultToken=
|
||||
|
||||
### Option: VaultURL
|
||||
# Vault server HTTP[S] URL. System-wide CA certificates directory will be used if SSLCALocation is not specified.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# VaultURL=https://127.0.0.1:8200
|
||||
|
||||
### Option: VaultDBPath
|
||||
# Vault path or query depending on the Vault from where credentials for database will be retrieved by keys.
|
||||
# Keys used for HashiCorp are 'password' and 'username'.
|
||||
# Example path:
|
||||
# secret/zabbix/database
|
||||
# Keys used for CyberArk are 'Content' and 'UserName'.
|
||||
# Example query:
|
||||
# AppID=zabbix_server&Query=Safe=passwordSafe;Object=zabbix_proxy_database
|
||||
# This option can only be used if DBUser and DBPassword are not specified.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# VaultDBPath=
|
||||
|
||||
### Option: VaultTLSCertFile
|
||||
# Name of the SSL certificate file used for client authentication. The certificate file must be in PEM1 format.
|
||||
# If the certificate file contains also the private key, leave the SSL key file field empty. The directory
|
||||
# containing this file is specified by configuration parameter SSLCertLocation.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# VaultTLSCertFile=
|
||||
|
||||
### Option: VaultTLSKeyFile
|
||||
# Name of the SSL private key file used for client authentication. The private key file must be in PEM1 format.
|
||||
# The directory containing this file is specified by configuration parameter SSLKeyLocation.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# VaultTLSKeyFile=
|
||||
|
||||
####### For advanced users - TCP-related fine-tuning parameters #######
|
||||
|
||||
## Option: ListenBacklog
|
||||
# The maximum number of pending connections in the queue. This parameter is passed to
|
||||
# listen() function as argument 'backlog' (see "man listen").
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
|
||||
# Default: SOMAXCONN (hard-coded constant, depends on system)
|
||||
# ListenBacklog=
|
||||
|
|
@ -31,7 +31,7 @@ ListenPort={{ zabbix_server_listen_port }}
|
|||
### Option: LogFile
|
||||
# Log file name for LogType 'file' parameter.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Mandatory: yes, if LogType is set to file, otherwise no
|
||||
# Default:
|
||||
# LogFile=
|
||||
|
||||
|
@ -71,10 +71,22 @@ DebugLevel={{ zabbix_debug_level }}
|
|||
|
||||
PidFile=/var/run/zabbix/zabbix_server.pid
|
||||
|
||||
### Option: SocketDir
|
||||
# IPC socket directory.
|
||||
# Directory to store IPC sockets used by internal Zabbix services.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# SocketDir=/tmp
|
||||
|
||||
SocketDir=/run/zabbix
|
||||
|
||||
### Option: DBHost
|
||||
# Database host name.
|
||||
# If set to localhost, socket is used for MySQL.
|
||||
# If set to empty string, socket is used for PostgreSQL.
|
||||
# If set to empty string, the Net Service Name connection method is used to connect to Oracle database; also see
|
||||
# the TNS_ADMIN environment variable to specify the directory where the tnsnames.ora file is located.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -82,7 +94,9 @@ DBHost={{ zabbix_server_db_host }}
|
|||
|
||||
### Option: DBName
|
||||
# Database name.
|
||||
# For SQLite3 path to database file must be provided. DBUser and DBPassword are ignored.
|
||||
# If the Net Service Name connection method is used to connect to Oracle database, specify the service name from
|
||||
# the tnsnames.ora file or set to empty string; also see the TWO_TASK environment variable if DBName is set to
|
||||
# empty string.
|
||||
#
|
||||
# Mandatory: yes
|
||||
# Default:
|
||||
|
@ -91,14 +105,14 @@ DBHost={{ zabbix_server_db_host }}
|
|||
DBName={{ zabbix_server_db_name }}
|
||||
|
||||
### Option: DBSchema
|
||||
# Schema name. Used for IBM DB2 and PostgreSQL.
|
||||
# Schema name. Used for PostgreSQL.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# DBSchema=
|
||||
|
||||
### Option: DBUser
|
||||
# Database user. Ignored for SQLite.
|
||||
# Database user.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -107,7 +121,7 @@ DBName={{ zabbix_server_db_name }}
|
|||
DBUser={{ zabbix_server_db_user }}
|
||||
|
||||
### Option: DBPassword
|
||||
# Database password. Ignored for SQLite.
|
||||
# Database password.
|
||||
# Comment this line if no password is used.
|
||||
#
|
||||
# Mandatory: no
|
||||
|
@ -119,15 +133,75 @@ DBPassword={{ zabbix_server_db_passwd }}
|
|||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# DBSocket=/tmp/mysql.sock
|
||||
# DBSocket=
|
||||
|
||||
### Option: DBPort
|
||||
# Database port when not using local socket. Ignored for SQLite.
|
||||
# Database port when not using local socket.
|
||||
# If the Net Service Name connection method is used to connect to Oracle database, the port number from the
|
||||
# tnsnames.ora file will be used. The port number set here will be ignored.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1024-65535
|
||||
# Default (for MySQL):
|
||||
# DBPort=3306
|
||||
# Default:
|
||||
# DBPort=
|
||||
|
||||
### Option: AllowUnsupportedDBVersions
|
||||
# Allow server to work with unsupported database versions.
|
||||
# 0 - do not allow
|
||||
# 1 - allow
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# AllowUnsupportedDBVersions=0
|
||||
|
||||
### Option: HistoryStorageURL
|
||||
# History storage HTTP[S] URL.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# HistoryStorageURL=
|
||||
|
||||
### Option: HistoryStorageTypes
|
||||
# Comma separated list of value types to be sent to the history storage.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# HistoryStorageTypes=uint,dbl,str,log,text
|
||||
|
||||
### Option: HistoryStorageDateIndex
|
||||
# Enable preprocessing of history values in history storage to store values in different indices based on date.
|
||||
# 0 - disable
|
||||
# 1 - enable
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# HistoryStorageDateIndex=0
|
||||
|
||||
### Option: ExportDir
|
||||
# Directory for real time export of events, history and trends in newline delimited JSON format.
|
||||
# If set, enables real time export.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# ExportDir=
|
||||
|
||||
### Option: ExportFileSize
|
||||
# Maximum size per export file in bytes.
|
||||
# Only used for rotation if ExportDir is set.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1M-1G
|
||||
# Default:
|
||||
# ExportFileSize=1G
|
||||
|
||||
### Option: ExportType
|
||||
# List of comma delimited types of real time export - allows to control export entities by their
|
||||
# type (events, history, trends) individually.
|
||||
# Valid only if ExportDir is set.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# ExportType=events,history,trends
|
||||
|
||||
############ ADVANCED PARAMETERS ################
|
||||
|
||||
|
@ -141,12 +215,22 @@ StartPollers={{ zabbix_server_pollers }}
|
|||
|
||||
### Option: StartIPMIPollers
|
||||
# Number of pre-forked instances of IPMI pollers.
|
||||
# The IPMI manager process is automatically started when at least one IPMI poller is started.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-1000
|
||||
# Default:
|
||||
# StartIPMIPollers={{ zabbix_server_ipmi_pollers }}
|
||||
|
||||
### Option: StartPreprocessors
|
||||
# Number of pre-forked instances of preprocessing workers.
|
||||
# The preprocessing manager process is automatically started when preprocessor worker is started.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1-1000
|
||||
# Default:
|
||||
# StartPreprocessors=3
|
||||
|
||||
### Option: StartPollersUnreachable
|
||||
# Number of pre-forked instances of pollers for unreachable hosts (including IPMI and Java).
|
||||
# At least one poller for unreachable hosts must be running if regular, IPMI or Java pollers
|
||||
|
@ -157,6 +241,16 @@ StartPollers={{ zabbix_server_pollers }}
|
|||
# Default:
|
||||
# StartPollersUnreachable=1
|
||||
|
||||
### Option: StartHistoryPollers
|
||||
# Number of pre-forked instances of history pollers.
|
||||
# Only required for calculated and internal checks.
|
||||
# A database connection is required for each history poller instance.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-1000
|
||||
# Default:
|
||||
# StartHistoryPollers=5
|
||||
|
||||
### Option: StartTrappers
|
||||
# Number of pre-forked instances of trappers.
|
||||
# Trappers accept incoming connections from Zabbix sender, active agents and active proxies.
|
||||
|
@ -194,8 +288,9 @@ StartPollers={{ zabbix_server_pollers }}
|
|||
|
||||
### Option: StartTimers
|
||||
# Number of pre-forked instances of timers.
|
||||
# Timers process time-based trigger functions and maintenance periods.
|
||||
# Only the first timer process handles the maintenance periods.
|
||||
# Timers process maintenance periods.
|
||||
# Only the first timer process handles host maintenance updates. Problem suppression updates are shared
|
||||
# between all timers.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1-1000
|
||||
|
@ -206,10 +301,19 @@ StartPollers={{ zabbix_server_pollers }}
|
|||
# Number of pre-forked instances of escalators.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-100
|
||||
# Range: 1-100
|
||||
# Default:
|
||||
# StartEscalators=1
|
||||
|
||||
### Option: StartAlerters
|
||||
# Number of pre-forked instances of alerters.
|
||||
# Alerters send the notifications created by action operations.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1-100
|
||||
# Default:
|
||||
# StartAlerters=3
|
||||
|
||||
### Option: JavaGateway
|
||||
# IP address (or hostname) of Zabbix Java gateway.
|
||||
# Only required if Java pollers are started.
|
||||
|
@ -284,6 +388,8 @@ StartPollers={{ zabbix_server_pollers }}
|
|||
# Default:
|
||||
# SNMPTrapperFile=/tmp/zabbix_traps.tmp
|
||||
|
||||
SNMPTrapperFile=/var/log/snmptrap/snmptrap.log
|
||||
|
||||
### Option: StartSNMPTrapper
|
||||
# If 1, SNMP trapper process is started.
|
||||
#
|
||||
|
@ -298,8 +404,6 @@ StartPollers={{ zabbix_server_pollers }}
|
|||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# ListenIP=0.0.0.0
|
||||
|
||||
ListenIP=0.0.0.0
|
||||
|
||||
### Option: HousekeepingFrequency
|
||||
|
@ -322,7 +426,6 @@ ListenIP=0.0.0.0
|
|||
# [housekeeperid], [tablename], [field], [value].
|
||||
# No more than 'MaxHousekeeperDelete' rows (corresponding to [tablename], [field], [value])
|
||||
# will be deleted per one task in one housekeeping cycle.
|
||||
# SQLite3 does not use this parameter, deletes all corresponding rows without a limit.
|
||||
# If set to 0 then no limit is used at all. In this case you must know what you are doing!
|
||||
#
|
||||
# Mandatory: no
|
||||
|
@ -330,20 +433,12 @@ ListenIP=0.0.0.0
|
|||
# Default:
|
||||
# MaxHousekeeperDelete=5000
|
||||
|
||||
### Option: SenderFrequency
|
||||
# How often Zabbix will try to send unsent alerts (in seconds).
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 5-3600
|
||||
# Default:
|
||||
# SenderFrequency=30
|
||||
|
||||
### Option: CacheSize
|
||||
# Size of configuration cache, in bytes.
|
||||
# Shared memory size for storing host, item and trigger data.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 128K-8G
|
||||
# Range: 128K-64G
|
||||
# Default:
|
||||
CacheSize={{ zabbix_cachesize }}
|
||||
|
||||
|
@ -382,7 +477,7 @@ CacheSize={{ zabbix_cachesize }}
|
|||
# HistoryIndexCacheSize=4M
|
||||
|
||||
### Option: TrendCacheSize
|
||||
# Size of trend cache, in bytes.
|
||||
# Size of trend write cache, in bytes.
|
||||
# Shared memory size for storing trends data.
|
||||
#
|
||||
# Mandatory: no
|
||||
|
@ -390,6 +485,15 @@ CacheSize={{ zabbix_cachesize }}
|
|||
# Default:
|
||||
# TrendCacheSize=4M
|
||||
|
||||
### Option: TrendFunctionCacheSize
|
||||
# Size of trend function cache, in bytes.
|
||||
# Shared memory size for caching calculated trend function data.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 128K-2G
|
||||
# Default:
|
||||
# TrendFunctionCacheSize=4M
|
||||
|
||||
### Option: ValueCacheSize
|
||||
# Size of history value cache, in bytes.
|
||||
# Shared memory size for caching item history data requests.
|
||||
|
@ -445,6 +549,7 @@ Timeout={{ zabbix_server_timeout }}
|
|||
### Option: AlertScriptsPath
|
||||
# Full path to location of custom alert scripts.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_server --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -455,6 +560,7 @@ AlertScriptsPath={{ zabbix_server_alert_scripts }}
|
|||
### Option: ExternalScripts
|
||||
# Full path to location of external scripts.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_server --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -535,6 +641,14 @@ LogSlowQueries={{ zabbix_server_queries_slow }}
|
|||
# Default:
|
||||
# ProxyDataFrequency=1
|
||||
|
||||
### Option: StartLLDProcessors
|
||||
# Number of pre-forked instances of low level discovery processors.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1-100
|
||||
# Default:
|
||||
# StartLLDProcessors=2
|
||||
|
||||
### Option: AllowRoot
|
||||
# Allow the server to run as 'root'. If disabled and the server is started by 'root', the server
|
||||
# will try to switch to the user specified by the User configuration option instead.
|
||||
|
@ -569,6 +683,8 @@ LogSlowQueries={{ zabbix_server_queries_slow }}
|
|||
### Option: SSLCertLocation
|
||||
# Location of SSL client certificates.
|
||||
# This parameter is used only in web monitoring.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_server --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -577,6 +693,8 @@ LogSlowQueries={{ zabbix_server_queries_slow }}
|
|||
### Option: SSLKeyLocation
|
||||
# Location of private keys for SSL client certificates.
|
||||
# This parameter is used only in web monitoring.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_server --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -591,11 +709,25 @@ LogSlowQueries={{ zabbix_server_queries_slow }}
|
|||
# Default:
|
||||
# SSLCALocation=
|
||||
|
||||
### Option: StatsAllowedIP
|
||||
# List of comma delimited IP addresses, optionally in CIDR notation, or DNS names of external Zabbix instances.
|
||||
# Stats request will be accepted only from the addresses listed here. If this parameter is not set no stats requests
|
||||
# will be accepted.
|
||||
# If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally
|
||||
# and '::/0' will allow any IPv4 or IPv6 address.
|
||||
# '0.0.0.0/0' can be used to allow any IPv4 address.
|
||||
# Example: StatsAllowedIP=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# StatsAllowedIP=127.0.0.1
|
||||
|
||||
####### LOADABLE MODULES #######
|
||||
|
||||
### Option: LoadModulePath
|
||||
# Full path to location of server modules.
|
||||
# Default depends on compilation options.
|
||||
# To see the default path run command "zabbix_server --help".
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
|
@ -603,8 +735,12 @@ LogSlowQueries={{ zabbix_server_queries_slow }}
|
|||
|
||||
### Option: LoadModule
|
||||
# Module to load at server startup. Modules are used to extend functionality of the server.
|
||||
# Format: LoadModule=<module.so>
|
||||
# The modules must be located in directory specified by LoadModulePath.
|
||||
# Formats:
|
||||
# LoadModule=<module.so>
|
||||
# LoadModule=<path/module.so>
|
||||
# LoadModule=</abs_path/module.so>
|
||||
# Either the module must be located in directory specified by LoadModulePath or the path must precede the module name.
|
||||
# If the preceding path is absolute (starts with '/') then LoadModulePath is ignored.
|
||||
# It is allowed to include multiple LoadModule parameters.
|
||||
#
|
||||
# Mandatory: no
|
||||
|
@ -641,3 +777,225 @@ LogSlowQueries={{ zabbix_server_queries_slow }}
|
|||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSKeyFile=
|
||||
|
||||
####### For advanced users - TLS ciphersuite selection criteria #######
|
||||
|
||||
### Option: TLSCipherCert13
|
||||
# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3.
|
||||
# Override the default ciphersuite selection criteria for certificate-based encryption.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherCert13=
|
||||
|
||||
### Option: TLSCipherCert
|
||||
# GnuTLS priority string or OpenSSL (TLS 1.2) cipher string.
|
||||
# Override the default ciphersuite selection criteria for certificate-based encryption.
|
||||
# Example for GnuTLS:
|
||||
# NONE:+VERS-TLS1.2:+ECDHE-RSA:+RSA:+AES-128-GCM:+AES-128-CBC:+AEAD:+SHA256:+SHA1:+CURVE-ALL:+COMP-NULL:+SIGN-ALL:+CTYPE-X.509
|
||||
# Example for OpenSSL:
|
||||
# EECDH+aRSA+AES128:RSA+aRSA+AES128
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherCert=
|
||||
|
||||
### Option: TLSCipherPSK13
|
||||
# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3.
|
||||
# Override the default ciphersuite selection criteria for PSK-based encryption.
|
||||
# Example:
|
||||
# TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherPSK13=
|
||||
|
||||
### Option: TLSCipherPSK
|
||||
# GnuTLS priority string or OpenSSL (TLS 1.2) cipher string.
|
||||
# Override the default ciphersuite selection criteria for PSK-based encryption.
|
||||
# Example for GnuTLS:
|
||||
# NONE:+VERS-TLS1.2:+ECDHE-PSK:+PSK:+AES-128-GCM:+AES-128-CBC:+AEAD:+SHA256:+SHA1:+CURVE-ALL:+COMP-NULL:+SIGN-ALL
|
||||
# Example for OpenSSL:
|
||||
# kECDHEPSK+AES128:kPSK+AES128
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherPSK=
|
||||
|
||||
### Option: TLSCipherAll13
|
||||
# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3.
|
||||
# Override the default ciphersuite selection criteria for certificate- and PSK-based encryption.
|
||||
# Example:
|
||||
# TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherAll13=
|
||||
|
||||
### Option: TLSCipherAll
|
||||
# GnuTLS priority string or OpenSSL (TLS 1.2) cipher string.
|
||||
# Override the default ciphersuite selection criteria for certificate- and PSK-based encryption.
|
||||
# Example for GnuTLS:
|
||||
# NONE:+VERS-TLS1.2:+ECDHE-RSA:+RSA:+ECDHE-PSK:+PSK:+AES-128-GCM:+AES-128-CBC:+AEAD:+SHA256:+SHA1:+CURVE-ALL:+COMP-NULL:+SIGN-ALL:+CTYPE-X.509
|
||||
# Example for OpenSSL:
|
||||
# EECDH+aRSA+AES128:RSA+aRSA+AES128:kECDHEPSK+AES128:kPSK+AES128
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# TLSCipherAll=
|
||||
|
||||
### Option: DBTLSConnect
|
||||
# Setting this option enforces to use TLS connection to database.
|
||||
# required - connect using TLS
|
||||
# verify_ca - connect using TLS and verify certificate
|
||||
# verify_full - connect using TLS, verify certificate and verify that database identity specified by DBHost
|
||||
# matches its certificate
|
||||
# On MySQL starting from 5.7.11 and PostgreSQL following values are supported: "required", "verify_ca" and
|
||||
# "verify_full".
|
||||
# On MariaDB starting from version 10.2.6 "required" and "verify_full" values are supported.
|
||||
# Default is not to set any option and behavior depends on database configuration
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# DBTLSConnect=
|
||||
|
||||
### Option: DBTLSCAFile
|
||||
# Full pathname of a file containing the top-level CA(s) certificates for database certificate verification.
|
||||
# Supported only for MySQL and PostgreSQL
|
||||
#
|
||||
# Mandatory: no
|
||||
# (yes, if DBTLSConnect set to one of: verify_ca, verify_full)
|
||||
# Default:
|
||||
# DBTLSCAFile=
|
||||
|
||||
### Option: DBTLSCertFile
|
||||
# Full pathname of file containing Zabbix server certificate for authenticating to database.
|
||||
# Supported only for MySQL and PostgreSQL
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# DBTLSCertFile=
|
||||
|
||||
### Option: DBTLSKeyFile
|
||||
# Full pathname of file containing the private key for authenticating to database.
|
||||
# Supported only for MySQL and PostgreSQL
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# DBTLSKeyFile=
|
||||
|
||||
### Option: DBTLSCipher
|
||||
# The list of encryption ciphers that Zabbix server permits for TLS protocols up through TLSv1.2
|
||||
# Supported only for MySQL
|
||||
#
|
||||
# Mandatory no
|
||||
# Default:
|
||||
# DBTLSCipher=
|
||||
|
||||
### Option: DBTLSCipher13
|
||||
# The list of encryption ciphersuites that Zabbix server permits for TLSv1.3 protocol
|
||||
# Supported only for MySQL, starting from version 8.0.16
|
||||
#
|
||||
# Mandatory no
|
||||
# Default:
|
||||
# DBTLSCipher13=
|
||||
|
||||
### Option: VaultToken
|
||||
# Vault authentication token that should have been generated exclusively for Zabbix server with read only permission
|
||||
# to paths specified in Vault macros and read only permission to path specified in optional VaultDBPath
|
||||
# configuration parameter.
|
||||
# It is an error if VaultToken and VAULT_TOKEN environment variable are defined at the same time.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# VaultToken=
|
||||
|
||||
### Option: VaultURL
|
||||
# Vault server HTTP[S] URL. System-wide CA certificates directory will be used if SSLCALocation is not specified.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# VaultURL=https://127.0.0.1:8200
|
||||
|
||||
### Option: VaultDBPath
|
||||
# Vault path from where credentials for database will be retrieved by keys 'password' and 'username'.
|
||||
# Example: secret/zabbix/database
|
||||
# This option can only be used if DBUser and DBPassword are not specified.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# VaultDBPath=
|
||||
|
||||
### Option: StartReportWriters
|
||||
# Number of pre-forked report writer instances.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-100
|
||||
# Default:
|
||||
# StartReportWriters=0
|
||||
|
||||
### Option: WebServiceURL
|
||||
# URL to Zabbix web service, used to perform web related tasks.
|
||||
# Example: http://localhost:10053/report
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# WebServiceURL=
|
||||
|
||||
### Option: ServiceManagerSyncFrequency
|
||||
# How often Zabbix will synchronize configuration of a service manager (in seconds).
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1-3600
|
||||
# Default:
|
||||
# ServiceManagerSyncFrequency=60
|
||||
|
||||
### Option: ProblemHousekeepingFrequency
|
||||
# How often Zabbix will delete problems for deleted triggers (in seconds).
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 1-3600
|
||||
# Default:
|
||||
# ProblemHousekeepingFrequency=60
|
||||
|
||||
## Option: StartODBCPollers
|
||||
# Number of pre-forked ODBC poller instances.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0-1000
|
||||
# Default:
|
||||
# StartODBCPollers=1
|
||||
|
||||
####### For advanced users - TCP-related fine-tuning parameters #######
|
||||
|
||||
## Option: ListenBacklog
|
||||
# The maximum number of pending connections in the queue. This parameter is passed to
|
||||
# listen() function as argument 'backlog' (see "man listen").
|
||||
#
|
||||
# Mandatory: no
|
||||
# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
|
||||
# Default: SOMAXCONN (hard-coded constant, depends on system)
|
||||
# ListenBacklog=
|
||||
|
||||
|
||||
####### High availability cluster parameters #######
|
||||
|
||||
## Option: HANodeName
|
||||
# The high availability cluster node name.
|
||||
# When empty, server is working in standalone mode; a node with empty name is registered with address for the frontend to connect to.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# HANodeName=
|
||||
|
||||
## Option: NodeAddress
|
||||
# IP or hostname with optional port to specify how frontend should connect to the server.
|
||||
# Format: <address>[:<port>]
|
||||
#
|
||||
# If IP or hostname is not set, then ListenIP value will be used. In case ListenIP is not set, localhost will be used.
|
||||
# If port is not set, then ListenPort value will be used. In case ListenPort is not set, 10051 will be used.
|
||||
# This option can be overridden by address specified in frontend configuration.
|
||||
#
|
||||
# Mandatory: no
|
||||
# Default:
|
||||
# NodeAddress=localhost:10051
|
|
@ -1,19 +0,0 @@
|
|||
<?php
|
||||
// Zabbix GUI configuration file.
|
||||
global $DB;
|
||||
|
||||
$DB['TYPE'] = 'MYSQL';
|
||||
$DB['SERVER'] = '{{ zabbix_server_db_host }}';
|
||||
$DB['PORT'] = '{{ zabbix_server_db_port }}';
|
||||
$DB['DATABASE'] = '{{ zabbix_server_db_name }}';
|
||||
$DB['USER'] = '{{ zabbix_server_db_user }}';
|
||||
$DB['PASSWORD'] = '{{ zabbix_server_db_passwd }}';
|
||||
|
||||
// Schema name. Used for IBM DB2 and PostgreSQL.
|
||||
$DB['SCHEMA'] = '';
|
||||
|
||||
$ZBX_SERVER = '{{ zabbix_server_hostname }}';
|
||||
$ZBX_SERVER_PORT = '{{ zabbix_server_listen_port }}';
|
||||
$ZBX_SERVER_NAME = '{{ zabbix_server_name }}';
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
Loading…
Reference in a new issue