zabbix自動發現自動註冊
阿新 • • 發佈:2018-11-11
一、自動發現
1.
2自動註冊詳細配置
二、自動註冊
1.
.
2.自動註冊詳細配置
三 自動安裝zabbix客戶端指令碼
#!/bin/bash #robin path='/etc/zabbix/zabbix_agentd.d/' #安裝zabbix源 rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm #安裝zabbix客戶端View Codeyum install -y zabbix-agent #自動註冊 配置zabbix-server IP sed -i.ori 's#Server=127.0.0.1#Server=192.168.3.92#' /etc/zabbix/zabbix_agentd.conf sed -i.ori 's#ServerActive=127.0.0.1#ServerActive=192.168.3.92#' /etc/zabbix/zabbix_agentd.conf #自動註冊 配置zabbix-agent hostname 通過引數傳值 sed -i.ori 's#Hostname=Zabbix server#Hostname='$(hostname)'#' /etc/zabbix/zabbix_agentd.conf #自動註冊 配置HostMetadataItem 用於區分linux和Windows sed -i.ori '180a HostMetadataItem=system.uname' /etc/zabbix/zabbix_agentd.conf #下載自定義監控配置檔案 cd $path sftp -v -n 192.168.3.92 <<EOF user root wb513692 cd /etc/zabbix/zabbix_agentd.d/ get userparameter_io.conf exit EOF#設定開機自啟動 systemctl enable zabbix-agent.service #啟動服務 systemctl start zabbix-agent.service