Problem A newly installed zabbix agent (4.4.x) was installed on a Windows 2016 server using an automated script. The error was showing Windows could not start the Zabbix Agent service on Local Computer Error 1067: The process terminated unexpectedly Troubleshooting i tried to run the command in the foreground "C:\Progra~1\Zabbix-Agent\zabbix_agentd.exe" -f –config "C:\Progra~1\Zabbix-Agent\zabbix_agentd.conf" And Read More…
Month: June 2020
Script to install Zabbix Agent on CentOS 6 and 7
The following bash script will determine if the guest OS is centos 6 ot 7 then deploy Zabbix Agent version 4.4.x accordingly. Simply change repostories if you want to use a different version: #!/bin/bash OUTPUT="$(cat /etc/redhat-release)" if echo "$OUTPUT" | grep -q "CentOS Linux release 7" ; then yes | Read More…
You must be logged in to post a comment.