Ubuntu 20.04 Zabbix agent installation
From Notes_Wiki
Revision as of 10:47, 16 June 2023 by Saurabh (talk | contribs) (Created page with "Home > Ubuntu > Server or Desktop administration > Ubuntu 20.04 Zabbix agent installation To install Zabbix agent in Ubuntu 20.04 machine use: # Install Zabbix repository #:<pre> #:: wget https://repo.zabbix.com/zabbix/6.4/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.4-1+ubuntu20.04_all.deb #:: dpkg -i zabbix-release_6.4-1+ubuntu20.04_all.deb #:: apt update #:</pre> # Install Zabbix agent using: #:<...")
Home > Ubuntu > Server or Desktop administration > Ubuntu 20.04 Zabbix agent installation
To install Zabbix agent in Ubuntu 20.04 machine use:
- Install Zabbix repository
- wget https://repo.zabbix.com/zabbix/6.4/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.4-1+ubuntu20.04_all.deb
- dpkg -i zabbix-release_6.4-1+ubuntu20.04_all.deb
- apt update
- Install Zabbix agent using:
- apt install zabbix-agent
- Edit '/etc/zabbix/zabbix_agentd.conf' to configure Zabbix server ip address using:
- Server=<IP address>
- Start and enable Zabbix agent using:
- systemctl restart zabbix-agent
- systemctl enable zabbix-agent
- Login to the Zabbix Monitoring Tool and add hosts. See CentOS 8.x Zabbix add hosts
Home > Ubuntu > Server or Desktop administration > Ubuntu 20.04 Zabbix agent installation