Ubuntu 16下安装zabbix agent , 分为三步
第一步:安装repository
For Ubuntu
Supported versions
Ubuntu 16.04 LTS (codeame: xenial)
Ubuntu 14.04 LTS (codename: trusty)
Installing repository configuration package
Install the repository configuration package,which contains apt (software package manager) configuration files. Shell commands forUbuntu 16.04 LTS(xenial):
#wgethttp://repo.zabbix.com/zabbix/3.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.2-1+xenial_all.deb #dpkg-izabbix-release_3.2-1+xenial_all.deb #apt-getupdate
For Ubuntu 14.04 LTS change 'xenial' to 'trusty'.
第二步:安装zabbix-agent
Debian / Ubuntu
To install agent after correctrepository configuration packageis installed,run the following command:
#apt-getinstallzabbix-agent
Now agent is ready to be started by:
#servicezabbix-agentstart
第三步:更改zabbix-agent配置文件
sudo vi /etc/zabbix/zabbix_agentd.conf
查找Server=127.0.0.1,将127.0.0.1替换为您的zabbix server的地址或域名
第四步:重启zabbix-agent
sudo service zabbix-agent restart
原文链接:https://www.f2er.com/ubuntu/350765.html