Zabbix agent runs as a Windows service.
You can run a single instance of Zabbix agent or multiple instances of the agent on a Microsoft Windows host. A single instance can use the default configuration file C:\zabbix_agentd.conf
or a configuration file specified in the command line. In case of multiple instances each agent instance must have its own configuration file (one of the instances can use the default configuration file).
An example configuration file is available in Zabbix source archive as conf/zabbix_agentd.win.conf
.
See the configuration file options for details on configuring Zabbix Windows agent.
To perform active checks on a host Zabbix agent needs to have the hostname defined. Moreover, the hostname value set on the agent side should exactly match the "Host name" configured for the host in the frontend.
The hostname value on the agent side can be defined by either the Hostname or HostnameItem parameter in the agent configuration file - or the default values are used if any of these parameters are not specified.
The default value for HostnameItem parameter is the value returned by the "system.hostname" agent key and for Windows platform it returns the NetBIOS host name.
The default value for Hostname is the value returned by the HostnameItem parameter. So, in effect, if both these parameters are unspecified the actual hostname will be the host NetBIOS name; Zabbix agent will use NetBIOS host name to retrieve the list of active checks from Zabbix server and send results to it.
The system.hostname key always returns the NetBIOS host name which is limited to 15 symbols and in UPPERCASE only - regardless of the length and lowercase/uppercase characters in the real host name.
Starting from Zabbix agent 1.8.6 version for Windows the "system.hostname" key supports an optional parameter - type of the name. The default value of this parameter is "netbios" (for backward compatibility) and the other possible value is "host".
The system.hostname[host] key always returns the full, real (case sensitive) Windows host name.
So, to simplify the configuration of zabbix_agentd.conf file and make it unified, two different approaches could be used.
Host name is also used as part of Windows service name which is used for installing, starting, stopping and uninstalling the Windows service. For example, if Zabbix agent configuration file specifies Hostname=Windows_db_server
, then the agent will be installed as a Windows service "Zabbix Agent [Windows_db_server]
". Therefore, to have a different Windows service name for each Zabbix agent instance, each instance must use a different host name.
To install a single instance of Zabbix agent with the default configuration file c:\zabbix_agentd.conf
:
On a 64-bit system, a 64-bit Zabbix agent version is required for all checks related to running 64-bit processes to work correctly.
If you wish to use a configuration file other than c:\zabbix_agentd.conf
, you should use the following command for service installation:
A full path to the configuration file should be specified.
Multiple instances of Zabbix agent can be installed as services like this:
zabbix_agentd.exe --config <configuration_file_for_instance_1> --install --multiple-agents
zabbix_agentd.exe --config <configuration_file_for_instance_2> --install --multiple-agents
...
zabbix_agentd.exe --config <configuration_file_for_instance_N> --install --multiple-agents
The installed service should now be visible in Control Panel.
To start the agent service, you can use Control Panel or do it from command line.
To start a single instance of Zabbix agent with the default configuration file:
To start a single instance of Zabbix agent with another configuration file:
To start one of multiple instances of Zabbix agent:
To stop the agent service, you can use Control Panel or do it from command line.
To stop a single instance of Zabbix agent started with the default configuration file:
To stop a single instance of Zabbix agent started with another configuration file:
To stop one of multiple instances of Zabbix agent:
To uninstall a single instance of Zabbix agent using the default configuration file:
To uninstall a single instance of Zabbix agent using a non-default configuration file:
To uninstall multiple instances of Zabbix agent from Windows services: