Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ScienceWolf666/c7f1394be2c9e9325148e54fa7170f22 to your computer and use it in GitHub Desktop.

Select an option

Save ScienceWolf666/c7f1394be2c9e9325148e54fa7170f22 to your computer and use it in GitHub Desktop.
πŸ“– | Installing the zabbix server agent on a host with a unix operating system

Installing the zabbix server agent on a host with a unix operating system

Update OS and download zabbix agent

  • apt-get update -y && apt-get upgrade -y && apt-get install zabbix-agent -y

Edit conf file zabbix-agent ( add ip addr of Zabbix Server => 192.168.1.30 )

  • nano /etc/zabbix/zabbix_agentd.conf

Enable zabbix agent, add zabbix agent to system autostart, restart agent, show service status

  • service zabbix-agent start && systemctl enable zabbix-agent && service zabbix-agent restart && systemctl status zabbix-agent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment